Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 599 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 599 Bytes

Monix

Short whiteboard for Club*Nix.

Deploy app

  1. Install docker-compose on your computer here.
  • Download the docker-compose.yml file.
  • If you have a custom css file, add it to your currrent folder.
  • Edit the docker-compose.yml file.
  • Launch it with docker-compose up

Dev Django

Install in virtualenv

virtualenv my_django
source ./my_django/bin/activate
cd monix/djangoapp
pip3 install -r requirements.txt

Deploy

python3 manage.py migrate
python3 manage.py createsuperuser
python3 manage.py runserver