// 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"