-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: Use heroku for preview Signed-off-by: Xuanwo <[email protected]> * Fix image missing Signed-off-by: Xuanwo <[email protected]> * Fix field Signed-off-by: Xuanwo <[email protected]> * Fix dockerfile Signed-off-by: Xuanwo <[email protected]> * Add comment Signed-off-by: Xuanwo <[email protected]> * Install make Signed-off-by: Xuanwo <[email protected]> * Add context Signed-off-by: Xuanwo <[email protected]> * Fix build Signed-off-by: Xuanwo <[email protected]> * Work around go fmt Signed-off-by: Xuanwo <[email protected]> * Remove git clean Signed-off-by: Xuanwo <[email protected]> * Add dockerignore Signed-off-by: Xuanwo <[email protected]> * Use dockerfile cmd instead Signed-off-by: Xuanwo <[email protected]> * trigger * rename to web instead Signed-off-by: Xuanwo <[email protected]> * Fix host that used in docker Signed-off-by: Xuanwo <[email protected]>
- Loading branch information
Showing
5 changed files
with
101 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Created by .ignore support plugin (hsz.mobi) | ||
### Go template | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
|
||
### IntelliJ user template | ||
|
||
# IntelliJ project files | ||
.idea | ||
*.iml | ||
out | ||
gen | ||
|
||
db | ||
bin | ||
dist | ||
node_modules | ||
|
||
releases | ||
|
||
api/ui/* | ||
!api/ui/ui.go | ||
|
||
# Flutter/Dart/Pub related | ||
ui/**/doc/api/ | ||
ui/**/ios/Flutter/.last_build_id | ||
ui/.dart_tool/ | ||
ui/.flutter-plugins | ||
ui/.flutter-plugins-dependencies | ||
ui/.packages | ||
ui/.pub-cache/ | ||
ui/.pub/ | ||
ui//build/ | ||
|
||
# Web related | ||
ui/lib/generated_plugin_registrant.dart | ||
|
||
# Symbolication related | ||
ui/app.*.symbols | ||
|
||
# Obfuscation related | ||
ui/app.*.map.json | ||
|
||
# Android Studio will place build artifacts here | ||
ui/android/app/debug | ||
ui/android/app/profile | ||
ui/android/app/release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"stack": "container" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
build: | ||
docker: | ||
web: Dockerfile |