hmn/src/config/config.go.example

74 lines
2.1 KiB
Plaintext
Raw Normal View History

2021-03-09 08:05:07 +00:00
package config
import (
"github.com/jackc/pgx/v4"
"github.com/rs/zerolog"
)
2021-03-09 08:05:07 +00:00
var Config = HMNConfig{
Env: Dev,
Addr: ":9001",
PrivateAddr: ":9002",
BaseUrl: "http://handmade.local:9001",
2021-08-29 23:11:41 +00:00
LogLevel: zerolog.TraceLevel, // InfoLevel is recommended for production
2021-03-09 08:05:07 +00:00
Postgres: PostgresConfig{
User: "hmn",
Password: "password",
Hostname: "handmade.local",
2021-08-28 21:33:15 +00:00
Port: 5432,
2021-03-09 08:05:07 +00:00
DbName: "hmn",
2021-08-29 23:11:41 +00:00
LogLevel: pgx.LogLevelTrace, // LogLevelWarn is recommended for production
MinConn: 2, // Keep these low for dev, high for production
2021-08-29 23:11:41 +00:00
MaxConn: 10,
2021-03-09 08:05:07 +00:00
},
2021-05-04 13:23:02 +00:00
Auth: AuthConfig{
CookieDomain: ".handmade.local",
CookieSecure: false,
},
2021-09-24 00:12:46 +00:00
Admin: AdminConfig {
AtomUsername: "admin",
AtomPassword: "password",
},
2021-08-08 20:05:52 +00:00
Email: EmailConfig{
2021-08-29 23:11:41 +00:00
ServerAddress: "smtp.example.com",
ServerPort: 587,
FromAddress: "noreply@example.com",
FromAddressPassword: "",
FromName: "Handmade Network Team",
OverrideRecipientEmail: "override@handmade.network", // NOTE(asaf): If this is not empty, all emails will be redirected to this address.
2021-08-08 20:05:52 +00:00
},
2021-06-22 09:50:40 +00:00
DigitalOcean: DigitalOceanConfig{
2021-08-29 23:11:41 +00:00
AssetsSpacesKey: "",
AssetsSpacesSecret: "",
AssetsSpacesRegion: "",
2021-06-22 09:50:40 +00:00
AssetsSpacesEndpoint: "",
2021-08-29 23:11:41 +00:00
AssetsSpacesBucket: "",
2021-08-30 00:15:48 +00:00
AssetsPathPrefix: "", // Empty is fine for production, but may be necessary for dev
AssetsPublicUrlRoot: "", // e.g. "https://bucket-name.region.cdn.digitaloceanspaces.com/". Note the trailing slash...
2021-06-22 09:50:40 +00:00
},
Discord: DiscordConfig{
BotToken: "",
BotUserID: "",
OAuthClientID: "",
OAuthClientSecret: "",
GuildID: "",
MemberRoleID: "",
ShowcaseChannelID: "",
LibraryChannelID: "",
2022-03-22 18:07:43 +00:00
StreamsChannelID: "",
},
Twitch: TwitchConfig{
ClientID: "",
ClientSecret: "",
EventSubSecret: "",
BaseUrl: "https://api.twitch.tv/helix",
BaseIDUrl: "https://id.twitch.tv/oauth2",
},
EpisodeGuide: EpisodeGuide{
CineraOutputPath: "./annotations/",
Projects: map[string]string{"hero": "code", "riscy": "riscy", "bitwise": "bitwise"},
},
2021-03-09 08:05:07 +00:00
}