Browse Source

Adapt instructions related to python_app db user

Adapt the SQL section of the README.
DricomDragon 5 years ago
parent
commit
d5c8cb46f0
1 changed files with 33 additions and 12 deletions
  1. 33 12
      README.md

+ 33 - 12
README.md

@@ -39,33 +39,54 @@ Start service :
 
 `sudo service postgresql start`
 
-#### Create python user
+#### Create SQL objects
 
-Create owner of the _logistics_ database.
-
-`sudo -u postgres psql -c "CREATE USER python_app WITH NOCREATEDB NOCREATEROLE NOSUPERUSER PASSWORD 'blablapoivron';"`
+##### Create python user
 
-#### Create the database
+Create owner of the _logistics_ database.
 
-Connect with postgres profile :
+`sudo -u postgres psql -f SQL/create_user.sql`
 
-`sudo su postgres`
+##### Create the database
 
 Create the database :
 
-`psql -f SQL/create_db.sql postgres`
+`sudo -u postgres psql -f SQL/create_db.sql`
+
+##### Create tables
 
 Populate database with tables :
 
-`psql -d logistics -f SQL/create_tables.sql postgres`
+`sudo -u postgres psql -d logistics -f SQL/create_tables.sql`
+
+Grant python to alter these tables :
+
+`sudo -u postgres psql -d logistics -f SQL/grant_python.sql`
+
+##### Add starter testing data
 
 Populate tables with sample data :
 
-`psql -d logistics -f SQL/populate_tables.sql postgres`
+`sudo -u postgres psql -d logistics -f SQL/populate_tables.sql`
+
+#### Security
+
+If needed you can adapt the password of *python_app* user (or any user you want) :
+
+`sudo -u postgres psql -c "ALTER USER python_app PASSWORD 'blablapoivron'"`
+
+#### Shortcut
+
+To do everything in two single command :
+`sudo -u postgres psql -f SQL/create_user.sql -f SQL/create_db.sql`
+
+`sudo -u postgres psql -d logistics -f SQL/create_tables.sql -f SQL/grant_python.sql -f SQL/populate_tables.sql`
+
+#### Clear everything
 
-If needed you can adapt the password of postgres user (or any user you want) :
+Remove database and *python_app* db user :
 
-`psql -c "alter user postgres password 'postgres_password'"`
+`sudo -u postgres psql -f SQL/clear_all.sql`
 
 ## Repository structure