Skip to content

Commit

Permalink
Merge pull request #100 from gfa-cc-after/chore/add-dotenv-for-secrets
Browse files Browse the repository at this point in the history
chore: add dotenv file to store secrets
  • Loading branch information
markkovari authored Sep 7, 2024
2 parents 5bd2fe9 + 6ad9ba9 commit 18869e0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
MAIL_PASSWORD=
MAIL_USERNAME=
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ data
*.idea

.DS_Store
.env
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,16 @@

You can find the frontend of the project in the `frontend` folder
[here](./frontend/README.md).


## Environemnts and secrets

The project uses a `.env` file to store the secrets and environment variables. You can find an example of the file in the `.env.example` file. The dotenv file is used to store the secrets and environment variables for the docker-compose file.

You can copy the sample file to a new file called `.env` and fill in the values.

```bash
cp .env.sample .env
```

then fill in the values in the `.env` file.

0 comments on commit 18869e0

Please sign in to comment.