Works a bit like a Kanban Board.
UI that allows users to drag notices into different sections. Four sections: Backlog, Selected, In Progress, Done Each notice just stores a description of the job and due date.
node.js server to handle http requests. Want to set it up so that post requests sent to the backend will create new notices and the get requests will display notices. Currently, notices are stored persistently in JSON file. Need to switch that over to a database.
clone repo locally.
Then cd backend, and run npm start
to start the backend server.
cd frontend, and run npm run serve
to start hosting the service as a whole.
Add OAuth, make it a social media app. Can look up other people's noticeboards and star them. (Notice-me is our version of likes). Settings: Create A Rule Engine.
1)Set up OAuth 2) Make database design to access specific noticeLists based on userID.