dev: hotfixes

+ moved cmd/simgos-sync* to cmd/snync*
+ adjust Dockerfiles
This commit is contained in:
2025-12-12 10:51:37 +07:00
parent 44b37e2d49
commit 87baa898f6
17 changed files with 5 additions and 5 deletions
+18
View File
@@ -0,0 +1,18 @@
# Makefile for Atlas migrations
# Default environment
ENV ?= gorm
.PHONY: diff apply hash
## Generate a new migration diff
diff:
atlas migrate diff --env $(ENV)
## Apply migrations to the database
apply:
atlas migrate apply --env $(ENV)
## Calculate the schema hash
hash:
atlas migrate hash