Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blackwakhu/note-taking-app-django
django-note-taking
https://github.com/blackwakhu/note-taking-app-django
css3 django html5 javascript python3 python3-10 sqlite3 typescript
Last synced: about 2 months ago
JSON representation
django-note-taking
- Host: GitHub
- URL: https://github.com/blackwakhu/note-taking-app-django
- Owner: blackwakhu
- License: mit
- Created: 2024-07-17T05:52:08.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-18T13:53:39.000Z (6 months ago)
- Last Synced: 2024-07-19T11:00:18.545Z (6 months ago)
- Topics: css3, django, html5, javascript, python3, python3-10, sqlite3, typescript
- Language: HTML
- Homepage: https://replit.com/@shiberoderrickw/note-taking-app
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Note Taking Django App
this application allows the user to create a note, see the note, delete it or modify the note
## Project prequisites
the following prerequisites are required for the project to work
1. any operating system
2. python 3.10 or higher
3. sqlite3 installed
## How to get the project
1. clone the project
```git
git clone https://github.com/blackwakhu/note-taking-app-django.git
```
2. install all the requirements
```pip
pip install -r requirements.txt
```
4. navigate to the project folder
```shell
cd note-taking-app-django
```
5. make migrations
```python
python manage.py makemigrations note_taker
```
6. make sql migrations
```python
python manage.py sqlmigrate note_taker 0001
```
7. run migrations
```python
python manage.py migrate
```