Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 671 Bytes

bootstrap.md

File metadata and controls

35 lines (25 loc) · 671 Bytes

Bootstrap Django-Cast

Generate Hashes

Development:

python -m piptools compile --upgrade --allow-unsafe --generate-hashes requirements/production.in requirements/develop.in --output-file requirements/develop.txt

Production:

python -m piptools compile --upgrade --allow-unsafe --generate-hashes requirements/production.in --output-file requirements/production.txt

Install Requirements

python -m piptools sync requirements/develop.txt

Install Cast Package

python -m pip install -e .

Get Example app running

python manage.py migrate
python manage.py runserver 0.0.0.0:8000