This application requires node v5+ and Python 2.7/3.4+
pip install virtualenv
virtualenv venv
venv = Name of virtualenvsource venv/bin/activate
Note: Step 2 will create a folder named venv in your working directory
- Clone this repository
- Navigate to the repo. Usually
cd Origami/
- Add all the python dependencies.
pip install -r requirements.txt
- Add all the javascript dependencies
yarn
(preferably) ornpm install
- Setup redis
docker run -d -p 6379:6379 --name origami-redis redis:alpine
python manage.py makemigrations
python manage.py migrate
- Start the server by
python manage.py runserver --noworker
- Start the worker by
python manage.py runworker
node server.js
- Go to localhost:8000 Visit Read the docs for further instructions on Getting started
This software is licensed under GNU AGPLv3. Please see the included License
file. All external libraries, if modified, will be mentioned below explicitly.