🛸🦍 A Node kit with TypeScript, Express, GraphQL, Sequelize, PostgreSQL and awesome tools.
- Node
- Yarn
- Docker (*optional)
- Docker Compose (*optional)
- Dockstation (*optional)
const config = {
nodeEnv: process.env.NODE_ENV || 'development',
port: process.env.PORT || 9000,
pgHost: process.env.PG_HOST || '127.0.0.1',
pgPort: (process.env.PG_PORT as number | undefined) || 5432,
pgDB: process.env.PG_DB || 'postgres',
pgUser: process.env.PG_USER || 'postgres',
pgPassword: process.env.PG_PASSWORD || 'postgres',
};
export default config;yarn
yarn start:devcd scripts && ./start.sh🙌 Awesome
MIT © Cuong Nguyen
"If you are working on something that you really care about, you don't have to be pushed. The vision pulls you." - Steve Jobs