Skip to content

Instantly share code, notes, and snippets.

@keeyanajones
Created April 6, 2019 10:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keeyanajones/19603cd96e365ad4c12105612832e890 to your computer and use it in GitHub Desktop.
Save keeyanajones/19603cd96e365ad4c12105612832e890 to your computer and use it in GitHub Desktop.
example configuration typescript file
export default{
Development: {
config_id: {
host: "localhost",
port: 1234,
database: "my-app-db-dev"
}
},
Testing: {
config_id: {
host: "localhost",
database: "my-app-db-testing"
}
},
Staging: {
config_id: {
host: "localhost",
port: 8080,
database: "my-app-db-stage"
}
},
Production: {
config_id: {
host: "localhost",
port: 1234,
database: "my-app-db-prod"
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment