https://github.com/danidmoura/django-todo-list
A web-based To-Do List application built with Django
https://github.com/danidmoura/django-todo-list
django python railway todo-list
Last synced: 3 months ago
JSON representation
A web-based To-Do List application built with Django
- Host: GitHub
- URL: https://github.com/danidmoura/django-todo-list
- Owner: DaniDMoura
- License: mit
- Created: 2025-02-24T01:46:08.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-02-24T02:32:23.000Z (3 months ago)
- Last Synced: 2025-02-24T03:20:05.424Z (3 months ago)
- Topics: django, python, railway, todo-list
- Language: Python
- Homepage: https://django-todo-list-production.up.railway.app/
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# To-Do List
A web-based To-Do List application built with **Django**. This website allows you to manage your tasks efficiently through a clean and intuitive interface.
## How to run locally
1. Clone the repository:
```bash
git clone https://github.com/your-username/to-do-list.git
cd to-do-list
```2. Create and activate a virtual environment:
```bash
python -m venv venv
source venv/bin/activate # macOS/Linux
venv\Scripts\activate # Windows
```3. Install dependencies:
```bash
pip install -r requirements.txt
```4. Run migrations:
```bash
python manage.py migrate
```5. Start the server:
```bash
python manage.py runserver
```Once started, you can access the website at `http://localhost:8000`
## Deployment
The website is available on Railway at: https://django-todo-list-production.up.railway.app/
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.