forked from go-aah/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaah.project
42 lines (33 loc) · 1.32 KB
/
aah.project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
######################################
# aahwebsite - aah framework project
#
# Note: Add it to version control
######################################
# Build section is used during aah application compile and build command.
build {
# Default value is `name` attribute value from `aah.conf`
#binary_name = "aahwebsite"
# Used as fallback if
# - `git commit sha` or
# - `AAH_APP_VERSION` environment value is not available.
version = "0.0.1"
# If application is missing any dependencies in `build import path`
# during a compile and build, aah CLI will try to get dependencies
# using 'go get <package>'.
# Default value is `false`.
#dep_get = true
# Log level is used for aah CLI tool logging.
# Default value is `info`.
log_level = "debug"
flags = ["-i"]
ldflags = ""
tags = ""
# AST excludes is used for `aah.Context` inspection and generating aah
# application main Go file. Valid exclude patterns
# refer: https://golang.org/pkg/path/filepath/#Match
ast_excludes = ["*_test.go", ".*", "*.bak", "*.tmp", "vendor"]
# Packing excludes is used to exclude file/directory during aah application
# build archive. Valid exclude patterns
# refer: https://golang.org/pkg/path/filepath/#Match
excludes = ["*.go", "*_test.go", ".*", "*.bak", "*.tmp", "vendor", "app", "build", "tests", "logs"]
}