main
Last change
on this file since 189cd8f was fe03f69, checked in by anastasovv <simon@…>, 2 years ago |
Newlines in readme
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | # Caessino
|
---|
2 |
|
---|
3 | Firstly, create a .env file in the project's root directory and populate it like so:
|
---|
4 |
|
---|
5 | HOME_URL="http://localhost:3000"
|
---|
6 | POSTGRES_HOST="db"
|
---|
7 | POSTGRES_USER="postgres"
|
---|
8 | POSTGRES_PASSWORD="postgres"
|
---|
9 | POSTGRES_DB="postgres"
|
---|
10 |
|
---|
11 |
|
---|
12 | Now, in your console, navigate to the project's root directory and run:
|
---|
13 |
|
---|
14 | docker-compose up
|
---|
15 |
|
---|
16 |
|
---|
17 | ===========================================================================
|
---|
18 |
|
---|
19 | If you are configuring this project for the first time, do the following, in order to set up the database.
|
---|
20 |
|
---|
21 | -- Note: The containers should be running in the background! (previously started with docker-compose up)
|
---|
22 |
|
---|
23 | Open another console and run:
|
---|
24 |
|
---|
25 | docker exec -it name_of_db_container /bin/bash
|
---|
26 | psql -U postgres postgres `<` /usr/local/app/dummy_database.sql
|
---|
27 |
|
---|
28 | -- Note: When inserting `<`, it should not be surrounded by quotation marks
|
---|
29 |
|
---|
30 | ===========================================================================
|
---|
31 |
|
---|
32 | Now you are all set up.
|
---|
33 |
|
---|
34 | Enjoy your stay at Caessino.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.