Code for new Django-based LMMS Sharing Platform.
License: GPLv2 or later
Initializing local database:
./manage.py syncdb
Run web server:
./manage.py runserver
For testing purposes, fill database with pseudo-data by running
./manage.py loadtestdata submissions.<Model>:<n>
This project uses the following python packages:
- For production
- Django 1.7
- django-allauth
- django-model-utils
- markdown
- django-markupfield (Currently broken)
- For testing/development
- django-autofixture (Only for testing purposes)
- For the import script
Install them via
$ pip install -r requirements.txt
$ pip install -r requirements.dev.txt
$ pip install -r requirements.import.txt
respectively.