Timely is a simple and efficient note-taking web app built with Django.
It allows users to create, edit, and organize notes effectively.
Running at (for now): Timely
✅ Create and edit notes
✅ Organize notes into notebooks
✅ Set reminders
✅ Simple and intuitive UI
✅ and many more coming in updates
-
Clone the repository:
git clone https://github.com/Ketan-coder/NoteTakingApp.git
-
Navigate to the project directory:
cd NoteTakingApp/Timely -
Install dependencies:
pip install -r requirements.txt
-
Run migrations:
python manage.py makemigrations python manage.py migrate
-
Run the development server:
python manage.py runserver
If you want to run this project using Docker, follow these steps:
-
Ensure Docker is installed on your system. If not, install it from Docker's official website.
-
Clone the repository (if not already done):
git clone https://github.com/Ketan-coder/NoteTakingApp.git cd NoteTakingApp/Timely -
Build the Docker image:
docker build -t timely-app . -
Build the Docker Container (Optional):
docker-compose up --build
-
Run the container:
docker run -p 8000:8000 timely-app
-
Access the app in your browser:
http://localhost:8000