Initial commit

This commit is contained in:
2026-02-12 14:31:30 +08:00
commit e01cdc9889
25 changed files with 3227 additions and 0 deletions

19
config/config.yaml Normal file
View File

@@ -0,0 +1,19 @@
server:
port: "3000"
environment: "development"
database:
driver: "sqlite"
sqlite:
path: "./data/database.sqlite"
postgres:
host: "localhost"
port: "5432"
user: "trace"
password: "trace123"
dbname: "trace"
sslmode: "disable"
jwt:
secret: "your-secret-key-here-change-in-production"
expire: 7200