source: README.md@ 0af535a

main
Last change on this file since 0af535a was 0af535a, checked in by anastasovv <simon@…>, 2 years ago

Newlines in readme

  • Property mode set to 100644
File size: 967 bytes
RevLine 
[87614a5]1# Caessino
[6568bde]2
[87614a5]3Firstly, create a .env file in the project's root directory and populate it like so:
[6568bde]4
[4a1a3ca]5HOME_URL="http://localhost:3000"
6POSTGRES_HOST="db"
7POSTGRES_USER="postgres"
8POSTGRES_PASSWORD="postgres"
9POSTGRES_DB="postgres"
[6568bde]10
11
[87614a5]12Now, in your console, navigate to the project's root directory and run:
[6568bde]13
[87614a5]14docker-compose up
[6568bde]15
16
[0af535a]17===========================================================================
18If you are configuring this project for the first time, do the following, in order to set up the database.
[6568bde]19
[87614a5]20Note: The containers should be running in the background! (previously started with docker-compose up)
[6568bde]21
[87614a5]22Open another console and run:
[6568bde]23
[0af535a]24docker exec -it name_of_db_container /bin/bash
25psql -U postgres postgres `<` /usr/local/app/dummy_database.sql
[64dc53b]26
27(When inserting `<`, it should not be surrounded by quotation marks)
[6568bde]28
[0af535a]29===========================================================================
[6568bde]30
[87614a5]31Now you are all set up.
[6568bde]32
[64dc53b]33Enjoy your stay at Caessino.
Note: See TracBrowser for help on using the repository browser.