実装をPythonに変更

This commit is contained in:
furu04 2025-06-09 13:21:22 +09:00
parent abd13805db
commit 0ab78dcdff
42 changed files with 16 additions and 26 deletions

9
.env Normal file
View File

@ -0,0 +1,9 @@
# Flask Configuration
FLASK_CONFIG=development
SECRET_KEY=your_secret_key_here
# Database Configuration
DB_USER=root
DB_PASSWORD=your_db_password
DB_HOST=db
DB_NAME=workout_db

View File

@ -1 +0,0 @@


View File

@ -3,8 +3,8 @@
技術スタックは以下の通り
- Go
- Gin
- Python
- Flask
- JavaScript
- Bootstrap or Tailwind テンプレート(未定)
- MySQL

0
app/__init__.py Normal file
View File

0
app/models/__init__.py Normal file
View File

0
app/models/workout.py Normal file
View File

View File

View File

0
app/routes/__init__.py Normal file
View File

View File

0
app/services/__init__.py Normal file
View File

View File

0
app/static/css/bootstrap.min.css vendored Normal file
View File

0
app/static/js/bootstrap.bundle.min.js vendored Normal file
View File

View File

View File

View File

@ -1 +0,0 @@


0
config.py Normal file
View File

View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


1
go.mod
View File

@ -1 +0,0 @@


1
go.sum
View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


View File

@ -1 +0,0 @@


5
requirements.txt Normal file
View File

@ -0,0 +1,5 @@
Flask
Flask-SQLAlchemy
PyMySQL
python-dotenv
gunicorn

0
run.py Normal file
View File