Skip to content
This repository has been archived by the owner on Apr 29, 2022. It is now read-only.
/ stacklife Public archive

All-day management app showing cumulative amount

Notifications You must be signed in to change notification settings

hoonv/stacklife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stack Life!

stack Life is a project about todo management backend : django frontend : react

ScreenShot

Backend

Make & Activate Virtual env:-

python -m venv venv
(Windows) venv\Scripts\activate
(Linux/Mac) source venv/bin/activate

Install Dependencies:-

cd backend
pip install -r requirements.txt

Make DB Migrations:-

python ./manage.py makemigrations
python ./manage.py migrate

Create admin:-

python manage.py createsuperuser

Start server for your REST-API:-

python ./manage.py runserver

frontend

cd .. 
npm install
npm start