Skip to content

Latest commit

 

History

History
45 lines (28 loc) · 815 Bytes

README.rst

File metadata and controls

45 lines (28 loc) · 815 Bytes

BIMA CORE

Example deploying a djang-bima-core based project.

Installation and run

  1. Clone project from the Git repository.

  2. Setup virtualenv Python

    cd bima_core
    mkvirtualenv "bima_core" -p python3
    pip install -r requirements/local.txt
    
  3. Create local configuration

    cd src
    cp app.ini.template app.ini
    # Review and edit app.ini
    
  4. Check test

    pytest
    
  5. Run local server

    python manage.py runserver
    
  6. Load minimum data

    python manage.py import_groups
    # Create an `user`, `copyright` and `author` in the admin.
    
  7. Run rq queues

    python manage.py rqworker upload haystack-photo-index
    

Contributing

See CONTRIBUTING.rst.