https://github.com/ilyakatz/automation
https://github.com/ilyakatz/automation
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ilyakatz/automation
- Owner: ilyakatz
- Created: 2024-01-20T21:25:15.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-10T06:20:00.000Z (5 months ago)
- Last Synced: 2025-02-10T06:27:20.327Z (5 months ago)
- Language: TypeScript
- Size: 7.04 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Automation
Scripts to automate various tasks
## Installation
```
yarn install
yarn add sharp --ignore-engines```
Copy `sample.env` to `.env` and update the values
### Water billing
```
export [email protected]
export DATE_START=3/21/2024
export DATE_END=4/29/2024
export TOTAL=181.44
export ADULTS=2
``````
yarn water --subject "Water and Sewer Usage Report" \
--to "$EMAIL_TO" \
--billing-start "$DATE_START" \
--billing-date "$DATE_END" \
--total $TOTAL \
--adults $ADULTS### Manga downloader
```
yarn comics```
#### Debugging
Add
```
--debug```