https://github.com/miladsade96/todo
Todo App Using Django
https://github.com/miladsade96/todo
Last synced: 3 months ago
JSON representation
Todo App Using Django
- Host: GitHub
- URL: https://github.com/miladsade96/todo
- Owner: miladsade96
- License: mit
- Created: 2022-08-09T19:00:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-30T14:20:46.000Z (about 3 years ago)
- Last Synced: 2025-02-22T22:28:55.822Z (8 months ago)
- Language: Python
- Size: 121 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ToDo
Todo App Using Django## How to run locally
1. Docker installation:
[Install docker on your os](https://www.docker.com/)2. Docker compose installation:
[Install docker compose on your os](https://docs.docker.com/compose/install/)3. Build the container and first run:
```shell
docker-compose up --build
```4. Run the container:
```shell
docker-compose up
```5. Make migrations:
```shell
docker-compose exec backend sh -c 'python manage.py makemigrations'
```6. Migrate:
```shell
docker-compose exec backend sh -c 'python manage.py migrate'
```7. Create a superuser:
```shell
docker-compose exec backend sh -c 'python manage.py createsuperuser'
```8. Open the browser and go to https://127.0.0.1:8000/