https://github.com/kevinkoech357/knotes
https://github.com/kevinkoech357/knotes
flask notes python
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kevinkoech357/knotes
- Owner: kevinkoech357
- Created: 2023-08-12T16:03:41.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-29T16:24:36.000Z (over 2 years ago)
- Last Synced: 2025-09-02T20:56:10.987Z (10 months ago)
- Topics: flask, notes, python
- Language: Python
- Homepage: https://knotes-n4cy.onrender.com
- Size: 2.17 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Introduction
KNotes is a flask web application that allows the user to create an account, write notes and delete notes.
## Installation
```bash
git clone https://github.com/kevinkoech357/KNotes
cd KNotes
```
## Setting up python virtual environment
```bash
python3 -m venv env
source env/bin/activate
```
### Installing dependencies
```bash
pip install -r requirements.txt
```
## Starting server
Option 1:
```bash
flask --app run run
```
Option 2:
```bash
gunicorn -w 4 run:app
```
## Checking live
Option 1:
Go to your browser and input=> ```http://127.0.0.1:5000```
Option 2:
Go to your browser and input=> ```http://127.0.0.1:8000```
## Bugs
* Deleting note doesn't work as expected. Will fix soon.
* Can't cancel flash messages.