Skip to content
This repository was archived by the owner on Jan 1, 2022. It is now read-only.

Latest commit

 

History

History
23 lines (15 loc) · 579 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 579 Bytes

PythonCR

Create a symlink

ln -s path-to-project/resources/settings/local.py path-to-project/resources/settings/application.py

Create/Modify your path-to-project/resources/settings/.env file to match your conf

DEBUG=on SECRET_KEY=****** DATABASE_URL=postgres://pythoncr:[email protected]:5432/pythoncr

Install mailcatcher

apt install build-essential libsqlite3-dev ruby-dev gem install mailcatcher --no-ri --no-rdoc mailcatcher --ip=0.0.0.0

ENJOY!!

create role pythoncr with login password 'pythoncr'; create database pythoncr; grant all on database pythoncr to pythoncr;