A Slack App built on the NestJS Framework utilizing Prisma. Prisma is used as the installation store and also for other functionality.
Build the docker image
$ docker build -t slack-app .
$ docker run -p 3000:3000 --env-file .env -d slack-app
# Build Prisma
$ npx prisma generate --schema=prisma/schema.prisma
# Build
$ npm run build
# Start the server
$ npm start