diff --git a/.env b/.env new file mode 100644 index 0000000..950108f --- /dev/null +++ b/.env @@ -0,0 +1,6 @@ +S3_ENDPOINT=http://hk.meowdream.cn:5246 +S3_ACCESS_KEY=s7R9zBdnQcw6FtR8Wr0J +S3_SECRET_KEY=FoobOUNWN7fDL7Zh0fkXP3d0plP +S3_BUCKET=image +MONGO_URI=mongodb://hk.meowdream.cn:27017 +MONGO_DB=catism_image \ No newline at end of file diff --git a/__pycache__/app.cpython-311.pyc b/__pycache__/app.cpython-311.pyc new file mode 100644 index 0000000..ed4b7d0 Binary files /dev/null and b/__pycache__/app.cpython-311.pyc differ diff --git a/__pycache__/blueprints.cpython-311.pyc b/__pycache__/blueprints.cpython-311.pyc new file mode 100644 index 0000000..06c3987 Binary files /dev/null and b/__pycache__/blueprints.cpython-311.pyc differ diff --git a/__pycache__/config.cpython-311.pyc b/__pycache__/config.cpython-311.pyc new file mode 100644 index 0000000..9c33316 Binary files /dev/null and b/__pycache__/config.cpython-311.pyc differ diff --git a/__pycache__/models.cpython-311.pyc b/__pycache__/models.cpython-311.pyc new file mode 100644 index 0000000..04f941b Binary files /dev/null and b/__pycache__/models.cpython-311.pyc differ diff --git a/app/app.py b/app.py similarity index 100% rename from app/app.py rename to app.py diff --git a/app/config.py b/config.py similarity index 100% rename from app/config.py rename to config.py diff --git a/app/models.py b/models.py similarity index 100% rename from app/models.py rename to models.py diff --git a/app/requirements.txt b/requirements.txt similarity index 100% rename from app/requirements.txt rename to requirements.txt diff --git a/app/routes/__pycache__/auth.cpython-311.pyc b/routes/__pycache__/auth.cpython-311.pyc similarity index 100% rename from app/routes/__pycache__/auth.cpython-311.pyc rename to routes/__pycache__/auth.cpython-311.pyc diff --git a/app/routes/__pycache__/images.cpython-311.pyc b/routes/__pycache__/images.cpython-311.pyc similarity index 100% rename from app/routes/__pycache__/images.cpython-311.pyc rename to routes/__pycache__/images.cpython-311.pyc diff --git a/app/routes/__pycache__/payment.cpython-311.pyc b/routes/__pycache__/payment.cpython-311.pyc similarity index 100% rename from app/routes/__pycache__/payment.cpython-311.pyc rename to routes/__pycache__/payment.cpython-311.pyc diff --git a/app/routes/auth.py b/routes/auth.py similarity index 100% rename from app/routes/auth.py rename to routes/auth.py diff --git a/app/routes/images.py b/routes/images.py similarity index 100% rename from app/routes/images.py rename to routes/images.py diff --git a/app/routes/payment.py b/routes/payment.py similarity index 100% rename from app/routes/payment.py rename to routes/payment.py diff --git a/app/static/css/bootstrap.min.css b/static/css/bootstrap.min.css similarity index 100% rename from app/static/css/bootstrap.min.css rename to static/css/bootstrap.min.css diff --git a/app/static/css/theme.css b/static/css/theme.css similarity index 100% rename from app/static/css/theme.css rename to static/css/theme.css diff --git a/app/static/dashboard.html b/static/dashboard.html similarity index 100% rename from app/static/dashboard.html rename to static/dashboard.html diff --git a/app/static/index.html b/static/index.html similarity index 100% rename from app/static/index.html rename to static/index.html diff --git a/app/static/js/app.js b/static/js/app.js similarity index 100% rename from app/static/js/app.js rename to static/js/app.js diff --git a/app/static/js/bootstrap.bundle.min.js b/static/js/bootstrap.bundle.min.js similarity index 100% rename from app/static/js/bootstrap.bundle.min.js rename to static/js/bootstrap.bundle.min.js diff --git a/app/static/js/dashboard.js b/static/js/dashboard.js similarity index 100% rename from app/static/js/dashboard.js rename to static/js/dashboard.js