first commit
This commit is contained in:
commit
b540fc86c5
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
develop.md
|
1
Dockerfile
Normal file
1
Dockerfile
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
13
README.md
Normal file
13
README.md
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
本Webアプリは,筋トレのワークアウトをWebサイト化して共有できるツールである。
|
||||||
|
外部からログインなしでダッシュボード化したワークアウト履歴を見ることができ,編集・更新のみログインを必要とする。
|
||||||
|
|
||||||
|
技術スタックは以下の通り
|
||||||
|
|
||||||
|
- Go
|
||||||
|
- Gin
|
||||||
|
- JavaScript
|
||||||
|
- Bootstrap or Tailwind テンプレート(未定)
|
||||||
|
- MySQL
|
||||||
|
|
||||||
|
## 注意事項
|
||||||
|
本Webアプリは現在開発中であり、動作しない。
|
1
cmd/server/main.go
Normal file
1
cmd/server/main.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
config/config.yaml
Normal file
1
config/config.yaml
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
docker-compose.yml
Normal file
1
docker-compose.yml
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/db/connection.go
Normal file
1
internal/db/connection.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/db/migrate.go
Normal file
1
internal/db/migrate.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/handler/user.go
Normal file
1
internal/handler/user.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/handler/workout.go
Normal file
1
internal/handler/workout.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/middleware/auth.go
Normal file
1
internal/middleware/auth.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/middleware/logger.go
Normal file
1
internal/middleware/logger.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/model/user.go
Normal file
1
internal/model/user.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/model/workout.go
Normal file
1
internal/model/workout.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/repository/user_repo.go
Normal file
1
internal/repository/user_repo.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/repository/workout_repo.go
Normal file
1
internal/repository/workout_repo.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/service/user_service.go
Normal file
1
internal/service/user_service.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/service/workout_service.go
Normal file
1
internal/service/workout_service.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/session/store.go
Normal file
1
internal/session/store.go
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/template/dashboard.html
Normal file
1
internal/template/dashboard.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/template/index.html
Normal file
1
internal/template/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/template/layout.html
Normal file
1
internal/template/layout.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/template/login.html
Normal file
1
internal/template/login.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
internal/template/workout_detail.html
Normal file
1
internal/template/workout_detail.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
Loading…
x
Reference in New Issue
Block a user