Skip to content

Commit cf8d5d9

Browse files
committed
use full path to github in copier copy commands
1 parent 964707d commit cf8d5d9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changes here will be overwritten by Copier
22
_commit: 1.3.0
3-
_src_path: gh:DiamondLightSource/python-copier-template
3+
_src_path: https://github.com/DiamondLightSource/python-copier-template
44
author_email: [email protected]
55
author_name: Giles Knap
66
component_owner: group:default/sscc

docs/how-to/copier_update.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ In this case you can still do an update using the 'copy' command - you just need
6464
For the generic IOC case:
6565

6666
```bash
67-
copier copy gh:epics-containers/ioc-template --trust .
67+
copier copy https://github.com/epics-containers/ioc-template --trust .
6868
```
6969

7070
For the beamline case:
7171

7272
```bash
73-
copier copy gh:epics-containers/services-template-helm .
73+
copier copy https://github.com/epics-containers/services-template-helm .
7474
```
7575

7676
In both cases you should select Y for each notice of a conflict, then resolve those conflicts in your editor.

docs/tutorials/create_beamline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ NOTE: for these tutorials we will use your personal GitHub Account to store ever
4747
1. Use copier to copy the services template repository to a new repository named `t01-services`. Note that there are two services templates, one for local deployments (using docker compose) and one for deployments to Kubernetes. We will use the local deployment template here.
4848

4949
```bash
50-
copier copy gh:epics-containers/services-template-compose t01-services
50+
copier copy https://github.com/epics-containers/services-template-compose t01-services
5151
```
5252

5353
Note the benefits of using copier to create a new repository:
@@ -58,7 +58,7 @@ NOTE: for these tutorials we will use your personal GitHub Account to store ever
5858
1. Answer the copier template questions with their default values as follows:
5959

6060
<pre><font color="#75507B">hgv27681</font>@<font color="#C4A000">pc0116</font>: <font color="#729FCF"><b>/scratch/hgv27681/work</b></font>
61-
$ copier copy gh:epics-containers/services-template-compose t01-services <font color="#4E9A06">[10:47:49]</font>
61+
$ copier copy https://github.com/epics-containers/services-template-compose t01-services <font color="#4E9A06">[10:47:49]</font>
6262
This template will create a new repository for deploying IOCs and services to
6363
the local machine using docker compose.
6464

docs/tutorials/generic_ioc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ your personal GitHub user space.
7575
```bash
7676
source $HOME/ec-venv/bin/activate
7777
# this will create the folder ioc-lakeshore340 in the current directory
78-
copier copy gh:epics-containers/ioc-template --trust ioc-lakeshore340
78+
copier copy https://github.com/epics-containers/ioc-template --trust ioc-lakeshore340
7979
```
8080
1. Answer the copier template questions as follows:
8181
<pre><font color="#5F87AF">🎤</font><b> A name for this project. By convention the name will start with ioc- and</b>

docs/tutorials/setup_k8s_new_beamline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ As before, we will use a copier template to create the new beamline repository.
2424

2525
```bash
2626
# make sure your Python virtual environment is active and copier is pip installed
27-
copier copy gh:epics-containers/services-template-helm t03-services
27+
copier copy https://github.com/epics-containers/services-template-helm t03-services
2828
```
2929

3030
Answer the copier template questions as follows for your own local cluster:

0 commit comments

Comments
 (0)