The following instructions will help you get started and use the application.
First, create a .env
file with the content of the .env.example
file:
cp .env.example .env
Then, complete the following lines in the .env
file:
POSTGRES_USER=<username>
POSTGRES_PASSWORD=<password>
POSTGRES_DB=<database>
The following command will:
- Install dependencies
- Create the docker
- Run the migrations
- Add seeds to the database
make install
make start