Skip to content

dungtd98/NoteApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Features

  • CRUD notes
  • Beautiful and simple GUI
  • login/logut and register system with JWT Token
  • API built using Django REST framework
  • Reactjs serve as frontend

Installation

  • Clone repository
git clone https://github.com/dungtd98/NoteApp.git
  • Install Dependencies
cd NoteApp
pip install -r requirement.txt
  • Config database in setting.py

For postgreSQL:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql',
        'NAME':'DB_Name',
        'USER':'DB_username',
        'PASSWORD':'DB_password',
        'HOST':'DB_host',
        'PORT':'DB_host'
    }
}

For SQLite:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': BASE_DIR / 'db.sqlite3',
    }
}
  • Make migrations and migrate Run in terminal
python manage.py makemigrations
python manage.py migrate
  • Run Django server
python manage.py runserver

App working

  • Login/Register/Logout Note-App-Login-Register
  • Create new note Add Note
  • View Detail, Update, Delete note CRUD-Note
  • Search note by name Search-function

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages