A simple web app to facilitate the weekly stand-up meetings at UNICEF Office of Innovation - NYHQ.
Features available:
- Mark a member absent or present
- Pair up: put two members from two different teams together
- Remove a member
- Add a member
- The demo version of the app is available with sample data, so be sure to type the following line before anything else. You need to do this only once:
cp src/data-sample.js src/data.js
Just note, however, that data changes (i.e. adding and removing members) won't be persistent between app sessions, because there's no backend service provisioned to handle it.
- Alternatively, if you believe you're authorized to use the official UNICEFInnovate version, contact me for the following credentials. NOTE: you still need to copy the data file as described above because the source code needs to call it.
export REACT_APP_PASSKEY=<the-passkey>
export DATABASE_URL=<local-or-remote-database>
Tip: Save these credentials into an .env
file at the root directory to avoid having to export
them every time.
-
Clone this GitHub repo, then, in your terminal or command-line interface:
yarn
yarn dev
Your app will open automatically in http://localhost:3000.
- Alternatively, if you want to run in production mode:
yarn
yarn build
NODE_ENV=production yarn start
You will need to manually open http://localhost:5000 in your browser.
This project was bootstrapped with Create React App.