-
Install Python 3.5+.
-
Clone the repository:
git clone https://github.com/AppraiseDev/OCELoT cd OCELoT -
Install virtual environments for Python:
pip3 install --user virtualenv -
Create environment for the project, activate it, and install Python requirements:
virtualenv venv -p python3 source venv/bin/activate pip install -r requirements.txt -
Create database, the first super user, and collect static files:
python manage.py migrate python manage.py createsuperuser python manage.py collectstaticFollow instructions on your screen; do not leave the password empty.
-
Run the app on a local server:
python manage.py runserverOpen the browser at http://127.0.0.1:8000/. The admin panel is available at http://127.0.0.1:8000/admin