Menu Close

React-Django-Notes-App

header.png

Todo App

A project for learning purposes.

Installation

# Clone the repository
git clone https://github.com/fatmakahveci/React-Django-Notes-App.git

# Go to the directory
cd React-Django-Notes-App

# Create a virtual environment
python3.11 -m venv env

# activate the virtual env
source env/bin/activate

# install packages
pip install -r requirements.txt

Backend development workflow

cd backend
python manage.py migrate
python manage.py runserver

Frontend development workflow

cd frontend
npm install

# You must be in the root folder where `package.json` is.
npm start

# For deployment
npm run build

  • You can check my Django notes in my blog.
View Source Code
Posted in Development