/bima-back

Example deploying a django-bima-back based project.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

BIMA BACK

Example deploying a djang-bima-back based project.

Installation and run

  1. Clone project from the Git repository.

  2. Setup Node.js environment

    cd bima_back
    npm install
    
  3. Setup Python virtualenv

    mkvirtualenv "bima_back" -p python3
    pip install -r requirements/local.txt
    
  4. Create local configuration

    cd src
    cp app.ini.template app.ini
    
  5. Review and edit app.in`, specially WS_BASE_URL, it should point to djang-bima-core

  6. Check test

    pytest
    
  7. Run local server

    python manage.py runserver
    
  8. Run rq queue

    python manage.py rqworker back
    

Contributing

See CONTRIBUTING.rst.