Python-Django based online event platform named stegolica.
Is in opencode.
Hosting can be done at openshift and webapp is optimised for that.
- Question page with hint
- Ranking page
- Login and register page
sudo apt-get install libpq-dev python-dev
sudo apt-get install postgresql-server-dev-9.5
then create an user using
sudo -u postgres createuser -P -s -e <user_name>
go to wsgi and create a virtualenv
cd wsgi
virtualenv venv
source venv/bin/activate
create a database
sudo -u postgres createdb -O <user_name> stegolica
enable settings, fill in your username and password (of postgres) in settings.py
cd stegolica
cp dev-settings.py settings.py
- pip install -r requirements.txt
Do migrations (bare with me)
python mange.py migrate
Run it
python manage.py runserver
go to 127.0.0.1:8000
to view
for deployment i openshift use dev.py.
you can help by
- finding out issues
- fixing issues already in the issues section
Uses materializecss and particle.js