├── .env ├── .idea ├── .gitignore ├── ToDoGemini.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Dockerfile ├── alembic.ini ├── alembic ├── README ├── env.py ├── script.py.mako └── versions │ └── 959b4670d4ab_phone_number_added.py ├── database.py ├── docker-compose.yml ├── main.py ├── models.py ├── requirements.txt ├── routers ├── __init__.py ├── auth.py └── todo.py ├── static ├── css │ ├── base.css │ └── bootstrap.css └── js │ ├── base.js │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── jquery-slim.js │ ├── popper.js │ └── popper.min.js.map ├── templates ├── add-todo.html ├── edit-todo.html ├── home.html ├── layout.html ├── login.html ├── navbar.html ├── register.html └── todo.html └── todoai_app.db /.env: -------------------------------------------------------------------------------- 1 | GOOGLE_API_KEY=AIzaSyAUCPAUIrsXedKSws0VM9HOtNMxqhnwL7M -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/ToDoGemini.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/.idea/ToDoGemini.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/Dockerfile -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/alembic.ini -------------------------------------------------------------------------------- /alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/alembic/env.py -------------------------------------------------------------------------------- /alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/alembic/script.py.mako -------------------------------------------------------------------------------- /alembic/versions/959b4670d4ab_phone_number_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/alembic/versions/959b4670d4ab_phone_number_added.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/database.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/requirements.txt -------------------------------------------------------------------------------- /routers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /routers/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/routers/auth.py -------------------------------------------------------------------------------- /routers/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/routers/todo.py -------------------------------------------------------------------------------- /static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/css/base.css -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/js/base.js -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /static/js/jquery-slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/js/jquery-slim.js -------------------------------------------------------------------------------- /static/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/js/popper.js -------------------------------------------------------------------------------- /static/js/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/static/js/popper.min.js.map -------------------------------------------------------------------------------- /templates/add-todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/add-todo.html -------------------------------------------------------------------------------- /templates/edit-todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/edit-todo.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/navbar.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/templates/todo.html -------------------------------------------------------------------------------- /todoai_app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atilsamancioglu/ToDoGeminiApp/HEAD/todoai_app.db --------------------------------------------------------------------------------