mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
* feat: add minimum password entropy requirements * Fix all the tests * Fix E2E tests
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
// Default port from the server
|
|
export const defaultPort = 3000
|
|
|
|
// Credentials for the first user
|
|
export const username = "admin"
|
|
export const password = "SomeSecurePassword!"
|
|
export const email = "admin@coder.com"
|