A space based platform for generating coloborative playlists.
-
Python3
$ sudo apt install python3 -
Python3 virtual environment
$ sudo apt install python3-venv -
Nodejs
$ sudo apt install nodejs
- Create and Activate Virtual Environment
cd backend
python3 -m venv venv
source venv/bin/activate
- Install Dependencies
pip3 install -r requirements.txt
- Migrate Database
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py runserver
- Start Back End
python3 manage.py runserver
- Install Dependencies
$ cd frontend
$ npm install
- Start React Application
$ npm start