Skip to content

Commit

Permalink
rename files
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnewhall committed Jul 17, 2024
1 parent 16ef713 commit 5f3c56c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions init/config/compose-builder.go → init/config/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import (
"strings"
)

/* This file creates an example compose file: docker-compose.yml */

//nolint:lll
const (
space = " "
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions init/config/docs-builder.go → init/config/docusaurus.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import (
"github.com/BurntSushi/toml"
)

/* This file creates a folder full of docusaurus markdown files for https://unpackerr.zip */

func printDocusaurus(config *Config, output string) {
// Generate index file first.
if err := makeGenerated(config, output); err != nil {
Expand Down
4 changes: 2 additions & 2 deletions init/config/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ func parseFlags() *flags {
flag.StringVar(&flags.Compose, "compose", exampleCompose,
"Choose a filename for the generated docker compose service.")
flag.StringVar(&flags.Docs, "docs", outputDir,
"Choose folder for generated documentation. ")
"Choose folder for generated documentation.")
flag.StringVarP(&flags.File, "file", "f", "internal",
"URL or filepath for conf-builder.yml, internal uses the compiled-in file")
"URL or filepath for conf-builder.yml, internal uses the compiled-in file.")
flag.Parse()

return &flags
Expand Down

0 comments on commit 5f3c56c

Please sign in to comment.