Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 808 Bytes

README.md

File metadata and controls

43 lines (30 loc) · 808 Bytes

Cost Explorer

Install dependencies:

virtualenv <env-name>
source <env_name>/bin/activate
pip3 install requirements.txt

Settings.py:

Open ./costExplorer/settings.example.py Configure your database, put your secret key and rename the file as settings.py

Migrate data to your database:

This will create all the necessary tables in the database:

python3 manage.py makemigrations
python3 manage.py migrate

Create Super-user

This will create a superuser/admin for the site:

python3 manage.py createsuperuser
.
.
python3 manage.py makemigrations
python3 manage.py migrate

Run development server

python3 manage.py runserver