We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64332c3 commit 62657f7Copy full SHA for 62657f7
3 files changed
.gitignore
@@ -8,6 +8,6 @@ tmp
8
web/dist
9
10
# build folder
11
-memos-build
+build
12
13
.DS_Store
scripts/.air.toml
@@ -5,7 +5,7 @@ tmp_dir = ".air"
5
bin = "./.air/memos"
6
cmd = "go build -o ./.air/memos ./bin/server/main.go"
7
delay = 1000
- exclude_dir = [".air", "web"]
+ exclude_dir = [".air", "web", "build"]
exclude_file = []
exclude_regex = []
exclude_unchanged = false
scripts/build.sh
@@ -8,6 +8,6 @@ cd "$(dirname "$0")/../"
echo "Start building backend..."
-go build -o ./memos-build/memos ./bin/server/main.go
+go build -o ./build/memos ./bin/server/main.go
echo "Backend built!"
0 commit comments