https://github.com/arvind-4/todoapp
ToDo App in Django, Tailwind
https://github.com/arvind-4/todoapp
css3 django html-css-javascript html5 javascript python python3 sqlite-database
Last synced: about 1 month ago
JSON representation
ToDo App in Django, Tailwind
- Host: GitHub
- URL: https://github.com/arvind-4/todoapp
- Owner: arvind-4
- License: mit
- Created: 2021-07-13T14:34:05.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-26T13:58:36.000Z (almost 2 years ago)
- Last Synced: 2025-05-15T19:11:27.325Z (about 1 year ago)
- Topics: css3, django, html-css-javascript, html5, javascript, python, python3, sqlite-database
- Language: Python
- Homepage: https://awesometodoapp.vercel.app
- Size: 750 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Todo app
A Todo app in [Django](https://www.djangoproject.com/)
Check the [Website](https://awesometodoapp.vercel.app) deployed Using Vercel.
## Get the code
- Step 1: Create Virtual Environment
```bash
cd ~/Dev
mkdir ~/Dev/todoapp -p
cd ~/Dev/todoapp
python3.9 -m pip install virtualenv
python3.9 -m virtualenv .
source bin/activate
```
- Step 2: Install the Dependencies
Using **pip**
```bash
git clone https://github.com/Arvind-4/todoapp.git .
pip install -r requirements.txt -r requirements-dev.txt
```
Using **poetry**
```bash
git clone https://github.com/Arvind-4/todoapp.git .
poetry install
```
- Step 3: Run the Migrations!
```bash
python manage.py makemigrations
python manage.py migrate
```
- Step 4: Run the Code!
```bash
python manage.py runserver
```
## Add These to your .env in Root of the Project
```bash
DATABASE_PORT=
DATABASE_HOST=
DATABASE_PASSWORD=
DATABASE_USER=
DATABASE_NAME=
DATABASE_CLUSTER=
DJANGO_SUPERUSER_PASSWORD=
DJANGO_SUPERUSER_USERNAME=
DJANGO_SUPERUSER_EMAIL=
DJANGO_DEBUG=
DJANGO_SECRET_KEY=
```