Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seancassiere/message-box
All the code for the final year project of my undergrad program.
https://github.com/seancassiere/message-box
Last synced: about 1 month ago
JSON representation
All the code for the final year project of my undergrad program.
- Host: GitHub
- URL: https://github.com/seancassiere/message-box
- Owner: SeanCassiere
- Created: 2021-12-29T06:36:39.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T07:14:45.000Z (over 1 year ago)
- Last Synced: 2024-05-01T16:48:31.825Z (6 months ago)
- Language: TypeScript
- Homepage:
- Size: 2.95 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MessageBox
An office productivity application aimed at providing managers more insight into what their employees are currently doing, without using **intrusive/invasive** monitoring tactics.
## Setup
This project has a server and web-client.
Ensure that the relevant environment variables are added based on the `.env.example` file.
BEFORE starting development ensure all the packages have their node_modules added.
```bash
npm run setup:servernpm run setup:web-client
```Now you can begin development.
```
# Spin up the Docker containers
make up# Open the web-client development server
npm run web-client
```