Skip to content
/ sequelize-kit Public template
generated from cuongndc/graphql-kit

A simple 🎲 KIT to start a new Node project.

License

Notifications You must be signed in to change notification settings

cuongndc/sequelize-kit

Repository files navigation

sequelize-kit

A simple 🎲 KIT to start a new Node project.

Preparation

How to use?

Update config.ts file (src/components/config.ts)

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;

Start application

yarn
yarn start:dev

Use with Docker + Docker Compose

yarn docker-compose:start
yarn docker-compose:stop
yarn docker-compose:rebuild

🙌 Awesome

License

MIT © Cuong Tran