/events

Primary LanguageTypeScript

Nest Logo

Events Organiser app. Built from NestJS starter.

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

# re-seed the db then start app
$ npm run start:dev:db:seed

# start existing db container then start app
$ npm run start:dev:db

# start existing db container then start app
$ npm run start:dev:db

# destroy everything :(
$ npm run stop:dev:db:destroy

TODO

  • Create simple CRUD endpoints.
  • Create Postgres DB and seeder scripts (entirely code defined in this repo).
  • Add Image service + endpoints.
  • Add endpoints and DB table to post messages (i.e. the feed) for an event.
  • Add endpoints for RSVPs for an event.
  • Add accounts + user management + relevant tools.
  • (external) create UI.