Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cithukyaw/djangonotemanager
A full-stack tutorial web application using Python, React and PostgreSQL
https://github.com/cithukyaw/djangonotemanager
Last synced: about 16 hours ago
JSON representation
A full-stack tutorial web application using Python, React and PostgreSQL
- Host: GitHub
- URL: https://github.com/cithukyaw/djangonotemanager
- Owner: cithukyaw
- Created: 2024-06-09T16:26:39.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2024-06-18T13:50:19.000Z (5 months ago)
- Last Synced: 2024-09-08T14:34:51.834Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django Note Manager
A full-stack tutorial web application using Python and Javascript as well as implementing authentication using JWT tokens.
- [backend](/backend): Python, Django, PostgreSQL
- [frontend](/frontend/): React, SCSSReference: https://www.youtube.com/watch?v=c-QsfbznSXI
## Installation
1. Clone the repo
2. CD to the project folder `DjangoNoteManager`.
3. Create a database `django_notes` in PostgreSQL.
4. Copy `backend/env` to `backend/.env` and configure your db settings### Python Virtual Environment Installation
python -m venv .venv
.venv\Scripts\activate (windows)
source .venv/bin/activate (linux)