Skip to content

Commit c428f33

Browse files
authored
docs: use .dev consistently in README (#74)
1 parent ce3a7df commit c428f33

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@ git clone [email protected]:varfish-org/varfish-docker-compose-ng.git
3434

3535
From here on, the commands should be executed from within this repository (`cd varfish-docker-compose-ng`).
3636

37-
We will use the directory `.prod` within the checkout for storing data and secrets.
37+
We will use the directory `.dev` within the checkout for storing data and secrets.
3838
In a production deployment, these directories should live outside of the checkout, of course.
3939

4040
Now, we create the directories for data storage.
4141

4242
```bash session
43-
mkdir -p .prod/volumes/{minio,varfish-static}/data
43+
mkdir -p .dev/volumes/{minio,varfish-static}/data
4444
```
4545

4646
Next, we setup some "secrets" for the passwords.
4747

4848
```bash session
49-
mkdir -p .prod/secrets
50-
echo password >.prod/secrets/db-password
51-
echo postgresql://varfish:password@postgres/varfish >.prod/secrets/db-url
52-
echo minio-root-password >.prod/secrets/minio-root-password
53-
echo minio-varfish-password >.prod/secrets/minio-varfish-password
49+
mkdir -p .dev/secrets
50+
echo password >.dev/secrets/db-password
51+
echo postgresql://varfish:password@postgres/varfish >.dev/secrets/db-url
52+
echo minio-root-password >.dev/secrets/minio-root-password
53+
echo minio-varfish-password >.dev/secrets/minio-varfish-password
5454
```
5555

5656
Also, setup a secret for the web server sessions:
@@ -59,7 +59,7 @@ Also, setup a secret for the web server sessions:
5959
# ensure that pwgen is installed first
6060
pwgen
6161
# generate a 100 character secret
62-
pwgen 100 1 >.prod/secrets/varfish-server-django-secret-key
62+
pwgen 100 1 >.dev/secrets/varfish-server-django-secret-key
6363
```
6464

6565
We now copy the `env.tpl` file to the default location for the environment `.env`.

0 commit comments

Comments
 (0)