This is the Django backend for Waveo, an interactive music visualization platform.
🏆 Created for DemonHacks 2020
🏅 Winner of the "Hack the Arts" category
To get started with Waveo on your local machine:
- Clone the repository
- Run
pip install -r requirements.txtto install the dependencies - Generate static files:
python manage.py collectstatic
- Run
python manage.py runserverto start the server - Go to http://localhost:8000 in your browser
-
Clone the repository
-
Run
pip install -r requirements.txtto install the dependencies -
Add the
waveofolder to your Django project directory (same level as your other apps) -
Update your
settings.py:INSTALLED_APPS = [ ..., 'waveo', ]
-
Update your
urls.py:At the top:
from django.urls import include, path
In
urlpatterns:path('', include('waveo.urls')),
-
Generate static files:
python manage.py collectstatic
-
Start the Django development server:
python manage.py runserver