Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pavel-durov/games.scraper.bot.ts
Arsenal Stadium games scraper and telegram bot
https://github.com/pavel-durov/games.scraper.bot.ts
Last synced: about 1 month ago
JSON representation
Arsenal Stadium games scraper and telegram bot
- Host: GitHub
- URL: https://github.com/pavel-durov/games.scraper.bot.ts
- Owner: Pavel-Durov
- License: mit
- Created: 2023-11-16T11:59:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-28T09:14:05.000Z (about 2 months ago)
- Last Synced: 2024-10-15T18:11:11.469Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 941 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TypeScript Template
## Getting started
```shell
$ npm install
```
## EnvMake sure to set up `ARSENAL_GAMES_TELEGRAM_BOT_TOKEN` in the runtime environment, or via the `.envrc` file.
## Run
```shell
$ npm run start
```## Build
```shell
$ npm run build
```## Test
```shell
$ npm run test
```## Lint
```shell
$ npm run lint # lint check
$ npm run lint:fix # lint write
```## Git hooks
### Tests
```shell
npx husky add .husky/pre-commit "npm test"
npx husky add .husky/pre-commit "npm run lint"
git add .husky/pre-commit
```### Commit message
```shell
npx husky add .husky/commit-msg 'npx --no -- commitlint --edit ${1}'
npm pkg set scripts.commitlint="commitlint --edit"
npx husky add .husky/commit-msg 'npm run commitlint ${1}'
```