Web application for creating and managing your notes.
-
Clone repository
git clone https://github.com/MarcinOrl/WebAppForNotes.git
-
Change directory
cd WebAppForNotes
-
Create virtual environment
python -m venv venv
venv\Scripts\activate (Windows)
source venv/bin/activate (macOS/Linux)
-
Install requirements
pip install -r requirements.txt
-
Install npm dependencies
npm install
-
Change directory
cd notes_project
-
Migrate the DB
python manage.py migrate
-
Run django server
python manage.py runserver