https://github.com/felixthec/timeclock
https://github.com/felixthec/timeclock
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/felixthec/timeclock
- Owner: FelixTheC
- Created: 2021-07-14T15:08:32.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-22T14:19:29.000Z (almost 4 years ago)
- Last Synced: 2025-02-10T00:45:12.212Z (3 months ago)
- Language: C++
- Size: 83 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Time clock a RaspberryPi project
- to get an overview of the daily working time
- check_in/check_out via RC522 module## Tech stack
- Tornado webserver for async request/response
- SQLAlchemy and simple sql DB
- Frontend via (HTMX)[https://htmx.org/docs/]
- Webserver <-> RC522 communication via C++## How to compile requirements
```bash
pip-compile --generate-hashes requirements.inpython -m pip install \
--no-deps \
--no-cache-dir \
--require-hashes \
--progress-bar=off \
-r /requirements/requirements.txt
```