From 0c2ed2ef35ab8f383955231850c95a480edb23a9a865e2a8b40cf31db9d71767 Mon Sep 17 00:00:00 2001 From: Timothy Kim Date: Mon, 19 Jan 2026 20:15:12 -0500 Subject: [PATCH] moved python flask code to src/ --- altcha_utils.py => src/altcha_utils.py | 0 app.py => src/app.py | 0 config.py => src/config.py | 0 forms.py => src/forms.py | 0 models.py => src/models.py | 0 requirements.txt => src/requirements.txt | 0 routes.py => src/routes.py | 0 {static => src/static}/css/styles.css | 0 {templates => src/templates}/base.html | 0 {templates => src/templates}/dashboard.html | 0 {templates => src/templates}/signup.html | 0 11 files changed, 0 insertions(+), 0 deletions(-) rename altcha_utils.py => src/altcha_utils.py (100%) rename app.py => src/app.py (100%) rename config.py => src/config.py (100%) rename forms.py => src/forms.py (100%) rename models.py => src/models.py (100%) rename requirements.txt => src/requirements.txt (100%) rename routes.py => src/routes.py (100%) rename {static => src/static}/css/styles.css (100%) rename {templates => src/templates}/base.html (100%) rename {templates => src/templates}/dashboard.html (100%) rename {templates => src/templates}/signup.html (100%) diff --git a/altcha_utils.py b/src/altcha_utils.py similarity index 100% rename from altcha_utils.py rename to src/altcha_utils.py diff --git a/app.py b/src/app.py similarity index 100% rename from app.py rename to src/app.py diff --git a/config.py b/src/config.py similarity index 100% rename from config.py rename to src/config.py diff --git a/forms.py b/src/forms.py similarity index 100% rename from forms.py rename to src/forms.py diff --git a/models.py b/src/models.py similarity index 100% rename from models.py rename to src/models.py diff --git a/requirements.txt b/src/requirements.txt similarity index 100% rename from requirements.txt rename to src/requirements.txt diff --git a/routes.py b/src/routes.py similarity index 100% rename from routes.py rename to src/routes.py diff --git a/static/css/styles.css b/src/static/css/styles.css similarity index 100% rename from static/css/styles.css rename to src/static/css/styles.css diff --git a/templates/base.html b/src/templates/base.html similarity index 100% rename from templates/base.html rename to src/templates/base.html diff --git a/templates/dashboard.html b/src/templates/dashboard.html similarity index 100% rename from templates/dashboard.html rename to src/templates/dashboard.html diff --git a/templates/signup.html b/src/templates/signup.html similarity index 100% rename from templates/signup.html rename to src/templates/signup.html