Skip to content

Commit

Permalink
feat: add support of Drone CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pandatix committed Apr 10, 2024
1 parent fb8c1a0 commit a20e799
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/ctfd-setup/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ func main() {
&cli.StringFlag{
Name: "file",
Usage: "Configuration file to use for setting up CTFd. If let empty, will default the values and look for secrets in expected environment variables. For more info, refers to the documentation.",
EnvVars: []string{"FILE"},
EnvVars: []string{"FILE", "PLUGIN_FILE"},
},
&cli.StringFlag{
Name: "url",
Usage: "URL to reach the CTFd instance.",
Required: true,
EnvVars: []string{"CTFD_URL"},
EnvVars: []string{"CTFD_URL", "PLUGIN_CTFD_URL"},
},
},
Action: run,
Expand Down

0 comments on commit a20e799

Please sign in to comment.