Skip to content

shravanjeevan/SEEKr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SEEKr

Setting up

Clone the repository:

$ git clone [email protected]:shravanjeevan/SEEKr.git

Navigate into the relevant directory:

$ cd SEEKr

Create and activate new Python virtual environment (optional):

$ virtualenv venv
$ source venv/bin/activate

Install dependencies:

$ pip install -r requirements.txt

Starting things up!

Starting up Django server

$ cd backend
$ python manage.py runserver

Starting up React app

$ cd frontend
$ npm start

URLs

Once each service has been started, navigate to these URLs to access them.

Service URL
Django http://localhost:8000
React http://localhost:3000