Changeset 64dc53b for README.md


Ignore:
Timestamp:
06/11/22 23:50:19 (2 years ago)
Author:
anastasovv <simon@…>
Branches:
main
Children:
4a1a3ca
Parents:
87614a5
Message:

Code cleanings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • README.md

    r87614a5 r64dc53b  
    44
    55HOME_URL="http://localhost:3000"
     6POSTGRES_HOST="db"
     7POSTGRES_USER="postgres"
     8POSTGRES_PASSWORD="postgres"
     9POSTGRES_DB="postgres"
    610
    711
     
    1115
    1216
    13 ======== If you are configuring this project for the first time, do the following =========
     17======== If you are configuring this project for the first time, do the following, in order to set up the database =========
    1418
    15 We will now set up a dummy database, in order for the project to work.
    1619Note: The containers should be running in the background! (previously started with docker-compose up)
    1720
     
    1922
    2023docker exec -it name_of_db_container /bin/bash
    21 psql -U postgres postgres &lt; /usr/local/app/caessino.sql
     24psql -U postgres postgres `<` /usr/local/app/dummy_database.sql
     25
     26(When inserting `<`, it should not be surrounded by quotation marks)
    2227
    2328==========================================================================================
Note: See TracChangeset for help on using the changeset viewer.