Skip to content

DreamBig-in/backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to setup in your Ubuntu machine. 🧑‍💻

Testing url
Production url


NOTE: All the cmds must be executed on terminal

  1. Postgresql Setup:
sudo -u postgres psql
psql -U postgres -h localhost # for windows.
CREATE DATABASE dream;
CREATE USER dream WITH PASSWORD 'dream';
ALTER ROLE dream SET client_encoding TO 'utf8';
ALTER ROLE dream SET default_transaction_isolation TO 'read committed';
ALTER ROLE dream SET timezone TO 'UTC';
GRANT ALL PRIVILEGES ON DATABASE dream TO dream;
  1. Python setup:
pip install -r requirements.txt
sudo systemctl start postgresql

Cheers Happy Coding

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages