Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 844 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 844 Bytes

series_shuffle

This is the second rewrite of random-episode-finder.
I wrote this as part of an one week internship at the company my cousin works at.
It uses Django using sqlite as the backend and Ember.js as the frontend, as this was the technology they were using there at the time. It is also using tailwindcss, but that was my own choice.


To use it you should have python, django and npm installed.
Start the backend server with

cd backend
python manage.py runserver

It should start the backend on port 9000.

Then you need to first install the frontend using

cd frontend
npm install

And then start the frontend

(cd frontend)
npm start