First, run the development server:
# STEP 1 (This step needs to be run only once)
npm run build-ts
# or
yarn build-ts
#it compile files time your ts code, then run:
# STEP 2
npm run dev
# or
yarn dev
# Start coding 🙂
- Dockerfile
- All types for imported modules (for better IDE support, code completion)
- Fully jest config for TypeScript support
- ESlint config with full TypeScript support
- Huge gitignore with all possible ignored files
docker build -t YOUR_DOCKER_NAME/YOUR_CONTAINERNAME . && docker push YOUR_DOCKER_NAME/YOUR_CONTAINER_NAME
docker run -p YOUR_HOST_NUMBER:YOUR_PORT -d --env-file ./.env --name YOUR_CONTAINER_NAME YOUR_DOCKER_NAME/YOUR_CONTAINER_NAME