mirror of
https://github.com/coder/coder.git
synced 2026-06-06 14:38:23 +00:00
10 lines
323 B
TypeScript
10 lines
323 B
TypeScript
// Our base port. It's important to run on 3000,
|
|
// which matches our api server
|
|
export const basePort = 3000
|
|
|
|
// Credentials for the default user when running in dev mode.
|
|
export const username = "developer"
|
|
export const password = "password"
|
|
export const organization = "acme-corp"
|
|
export const email = "admin@coder.com"
|