backend/research/research.md

30 lines
1023 B
Markdown
Raw Normal View History

2020-03-20 15:52:21 +00:00
## Proposed Tech stack
- NodeJS
- Express
- Postgresql
- Luxon
2020-03-21 22:54:05 +00:00
## Database architecture
See: https://dbdiagram.io/d/5e769ab14495b02c3b88936f
2020-03-23 13:59:01 +00:00
## Flowchart
2020-03-25 18:46:13 +00:00
![Meeting Scheduler Flowchart](https://git.armada.digital/rui/meeting-scheduler-backend/src/branch/master/research/meetingscheduler.jpg "Meeting Scheduler Flowchart")
2020-03-23 13:59:01 +00:00
2020-03-20 15:52:21 +00:00
## How to deal with date and time in PostgreSQL?
- use `datetime` datatype without timezone (datetime with timezone is using offset, which doesn't work well with DST)
- store datetime in UTC
- add timezone information separately, use `Full time zone name` (human friendly)
- use `ISO 8601` format, which is human friendly to read and supported by every library
See:
- https://www.moesif.com/blog/technical/timestamp/manage-datetime-timestamp-timezones-in-api/
2020-03-20 17:48:27 +00:00
- https://www.postgresql.org/docs/current/datatype-datetime.html
## Inspiration
- Framadate:https://framadate.org/
- Omnipointment: https://omnipointment.com
2020-03-20 17:55:25 +00:00
- When is Good: http://whenisgood.net/
- MRDA 2019 Secretary spreadsheets ;)