Example deploying a djang-bima-back based project.
Clone project from the Git repository.
Setup Node.js environment
cd bima_back npm install
Setup Python virtualenv
mkvirtualenv "bima_back" -p python3 pip install -r requirements/local.txt
Create local configuration
cd src cp app.ini.template app.ini
Review and edit
app.in`
, speciallyWS_BASE_URL
, it should point to djang-bima-coreCheck test
pytest
Run local server
python manage.py runserver
Run rq queue
python manage.py rqworker back
See CONTRIBUTING.rst.