Skip to content
/ Notely Public

Notely is a full-stack note-taking web application built with Django (backend) and React + Vite (frontend). This project demonstrates modern web app architecture and RESTful API integration.

Notifications You must be signed in to change notification settings

Rfannn/Notely

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notely 🗑️

test Notely is a full-stack note-taking web application built with Django (backend) and React + Vite (frontend). This project demonstrates modern web app architecture, RESTful API integration, and deployment on free hosting platforms.


Demo


Tech Stack

Layer Technology
Backend Django, Django REST Framework
Frontend React, Vite, Tailwind CSS
Database PostgreSQL
Hosting Liara (Backend), Vercel (Frontend)
Deployment GitHub Actions

Features

  • User authentication (register, login, logout)
  • CRUD notes functionality
  • Responsive and mobile-friendly UI
  • REST API powering the frontend
  • Separate frontend/backend deployment

Project Structure

Notely/
├─ backend/        # Django backend
├─ frontend/       # React + Vite frontend
│  ├─ src/
│  ├─ public/
│  ├─ package.json
│  └─ vite.config.js
├─ README.md

Getting Started

Backend

cd backend
python -m venv venv
source venv/bin/activate  # Windows: venv\Scripts\activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver

Frontend

cd frontend
npm install
npm run dev

#Ports for testing and developing: Frontend: http://localhost:5173 Backend: http://localhost:8000


Why This Project

  • Demonstrates full-stack development with separate frontend/backend
  • Highlights skills in React, Vite, Django, PostgreSQL

Future Improvements

  • Tags/categories for notes
  • Search/filtering
  • Real-time updates with WebSockets or Django Channels
  • Enhanced UI/UX with animations or drag-an

Feel free to contribute

About

Notely is a full-stack note-taking web application built with Django (backend) and React + Vite (frontend). This project demonstrates modern web app architecture and RESTful API integration.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published