commit 86cff0489eb4d97e46ac5f8261fbacf67034f010 Author: ulflow_phattt2901 Date: Wed May 21 12:39:40 2025 +0700 chore(init): Create Initial repo Upload First repo diff --git a/.air.toml b/.air.toml new file mode 100644 index 0000000..820a766 --- /dev/null +++ b/.air.toml @@ -0,0 +1,58 @@ +# Air Tomb Configuration for ULFlow Starter Kit +root = "." +tmp_dir = "tmp" + +[build] +# Just plain old shell command. You could use `make` as well. +cmd = "go build -o ./tmp/main.exe ./cmd/app" +# Binary file yields from `cmd`. +bin = "tmp/main.exe" +# Customize binary. +full_bin = "./tmp/main.exe" +# Watch these filename extensions. +include_ext = ["go", "tpl", "tmpl", "html"] +# Ignore these filename extensions or directories. +exclude_dir = ["assets", "tmp", "vendor", ".git", "node_modules"] +# Watch these directories if you specified. +include_dir = [] +# Exclude files. +exclude_file = [] +# This log file places in your tmp_dir. +log = "air.log" +# It's not necessary to trigger build each time file changes if it's too frequent. +delay = 1000 # ms +# Stop running old binary when build errors occur. +stop_on_error = true +# Send Interrupt signal before killing process (windows does not support this feature) +send_interrupt = true +# Delay after sending Interrupt signal +kill_delay = 500 # ms + +[log] +# Show log time +time = true + +[color] +# Customize each part's color. +main = "magenta" +watcher = "cyan" +build = "yellow" +runner = "green" + +[misc] +# Delete tmp directory on exit +clean_on_exit = true + +[screen] +clear_on_rebuild = true +keep_scroll = true + +[tomb] +# Enable Tomb for graceful shutdown +enabled = true +# Kill signal to use for graceful shutdown +signal = "SIGTERM" +# Timeout for graceful shutdown +timeout = "5s" +# Path to the tomb config file +config = "./tomb.yaml" diff --git a/.feature-flags.json b/.feature-flags.json new file mode 100644 index 0000000..70f0990 --- /dev/null +++ b/.feature-flags.json @@ -0,0 +1,5 @@ +{ + "enable_database": { + "enabled": false + } + } \ No newline at end of file diff --git a/.gitea/commit-template.txt b/.gitea/commit-template.txt new file mode 100644 index 0000000..c1b5a6b --- /dev/null +++ b/.gitea/commit-template.txt @@ -0,0 +1,14 @@ +# : + +# + +#