https://github.com/aeimer/texcount-graph
This is a little programm to track your latex progress
https://github.com/aeimer/texcount-graph
Last synced: 3 days ago
JSON representation
This is a little programm to track your latex progress
- Host: GitHub
- URL: https://github.com/aeimer/texcount-graph
- Owner: aeimer
- License: mit
- Created: 2020-04-24T19:41:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T14:16:51.000Z (about 3 years ago)
- Last Synced: 2025-04-04T12:13:46.802Z (12 months ago)
- Language: HTML
- Size: 132 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TeXcount-graph
This is a little programm to track your progress :)
## Install
### CI / CD
Add following code to your CI:
```bash
perl texcount.pl chapters/*.tex | tee count.log
COUNT=$(grep -e Total -A 1 count.log | tail -1 | cut -d: -f 2 | sed 's/ //')
curl -s -X POST --data count=${COUNT} --data hash=${COMMIT_HASH} yoururl/commit
```
### docker-compose
To deploy use the `docker-compose.yml`, you then can call the URL where it is hosted, a POST to /commit can add data.
## Develop
```bash
npm install
npm run dev
# Go to http://localhost:3000
```