Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,18 @@ This method uses Docker to run the complete application stack.

1. Make sure that [Docker](https://www.docker.com) is installed on your machine.

2. Create a `.env` file by running `cp .env.template .env` in the root of your local project folder, and add your preferred PostgreSQL username and password:
2. Create a `.env` file by running `cp .env.template .env` in the root of your local project folder, and add your preferred PostgreSQL username and password.

> **Note**
> When running locally, you may need to update one of the ports in the `.env` file if it conflicts with another application on your machine.

> **Note**
> Windows users will need to run the following in PowerShell before proceeding:
> ```
> winget install dos2unix
> dos2unix run_dev.sh
> ```

3. Build and run the project.

```
Expand Down
Loading