.replit 308 B

1234567891011121314151617
  1. run = ["make", "run"]
  2. # If the main file is changed, also change it in Makefile.
  3. entrypoint = "main.go"
  4. hidden = ["Makefile", "main"]
  5. [languages.go]
  6. pattern = "**/*.go"
  7. [languages.go.languageServer]
  8. start = "gopls"
  9. [nix]
  10. channel = "stable-21_11"
  11. [gitHubImport]
  12. requiredFiles = [".replit", "replit.nix"]