Welcome to the Flask Notes App! This simple web application allows users to sign up for an account, store their notes in a SQLAlchemy database, and manage their personal journal entries.
- User Authentication: Users can sign up for an account and securely log in.
- Note Management: Add and delete personal notes in your journal.
-
Clone the repository:
git clone https://github.com/yourusername/flask-notes-app.git cd flask-notes-app
-
Create a virtual environment (recommended):
python -m venv venv
-
Activate the virtual environment:
-
On Windows:
venv\Scripts\activate
-
On macOS/Linux:
source venv/bin/activate
-
-
Install the dependencies:
pip install -r requirements.txt
-
Run the Flask application:
python main.py
-
Open your web browser and navigate to http://localhost:5000.
-
Sign up for a new account.
-
Log in with your credentials.
-
Start adding and deleting notes in your personal journal.
Feel free to contribute to this project! Submit issues for bugs or feature requests, and create pull requests to improve the functionality.