project_name := "nixcn-cms" project_dir := justfile_directory() server_enrty := "main.go" output_dir := join(project_dir, ".outputs") client_dir := join(project_dir, "client") exec_path := join(output_dir, project_name) go_cmd := `realpath $(which go)` bun_cmd := `realpath $(which bun)` default: clean build run clean: find .outputs -mindepth 1 ! -name config.yaml -exec rm -rf {} + build: mkdir -p {{ output_dir }} {{ go_cmd }} build -o {{ exec_path }}{{ if os() == "windows" { ".exe" } else { "" } }} {{ server_enrty }} run: cd {{ output_dir }} && CONFIG_PATH={{ output_dir }} {{ exec_path }}{{ if os() == "windows" { ".exe" } else { "" } }} test: cd {{ output_dir }} && CONFIG_PATH={{ output_dir }} GO_ENV=test go test -C .. ./...