-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
77 additions
and
8 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
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,46 @@ | ||
package main | ||
|
||
type Config struct { | ||
global Global | ||
init Init | ||
e2e_tests E2eTests | ||
purge Cmd | ||
services []Service | ||
additionalCommands []Cmd | ||
} | ||
|
||
type Global struct { | ||
shell_cmd string | ||
} | ||
|
||
type Init struct { | ||
cmd string | ||
file string | ||
} | ||
|
||
type E2eTests struct { | ||
cmd string | ||
} | ||
|
||
type Services struct { | ||
} | ||
|
||
type Service struct { | ||
name string | ||
start Cmd | ||
dev Cmd | ||
postDev Cmd | ||
test ServiceTestCmd | ||
dirHash string | ||
} | ||
|
||
type Cmd struct { | ||
cmd string | ||
file string | ||
shell string | ||
} | ||
|
||
type ServiceTestCmd struct { | ||
cmd Cmd | ||
dependsOn []Service | ||
} |
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