Skip to content

Latest commit

 

History

History
28 lines (28 loc) · 335 Bytes

File metadata and controls

28 lines (28 loc) · 335 Bytes
sudo docker-compose up
sudo docker exec -it 738b1f6f46be /bin/bash
psql postgres postgres
CREATE DATABASE book_store;

list the databases in list

\l 

connect to the database

\c books_store

list tables in the database

\dt

run app server

python3 manage.py runserver