Skip to content

Latest commit

 

History

History
47 lines (41 loc) · 742 Bytes

README.md

File metadata and controls

47 lines (41 loc) · 742 Bytes

jimi

A space based platform for generating coloborative playlists.

Requirements

  • Python3 $ sudo apt install python3

  • Python3 virtual environment $ sudo apt install python3-venv

  • Nodejs $ sudo apt install nodejs

Getting Started

Back End

  1. Create and Activate Virtual Environment
cd backend
python3 -m venv venv
source venv/bin/activate
  1. Install Dependencies
pip3 install -r requirements.txt
  1. Migrate Database
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py runserver
  1. Start Back End
python3 manage.py runserver

Front End

  1. Install Dependencies
$ cd frontend
$ npm install
  1. Start React Application
$ npm start