You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
2.2 KiB

7 years ago
# ladylilia.com
## Project structure
6 years ago
* `apps/gifted-subs` - Angular application for browsing gifted subs
6 years ago
* `apps/merchandise` - Angular application for browsing merchandise
6 years ago
* `apps/quotes` - Angular application for browsing quotes
6 years ago
* `apps/regular-subs` - Angular application for browsing regular subs
6 years ago
* `apps/schedule` - Angular application for viewing livestream schedule
6 years ago
* `apps/twitch-logs` - Angular application for browsing Twitch chat logs
* `cms` - Grav CMS (Content Management System)
7 years ago
* `nginx` - Configuration of NGINX web server
6 years ago
* `instagram-api` - Flask application implementing RESTful API for querying Instagram profiles
6 years ago
* `quotes-api` - Flask application implementing RESTful API for querying/manipulating the database of quotes
6 years ago
* `teespring-api` - Flask application implementing RESTful API for querying Teespring merchandise stores
6 years ago
* `twitch-cache-api` - Flask application implementing RESTful API for querying the Twitch cache
6 years ago
* `twitch-subs-api` - Flask application implementing RESTful API for querying the database of Twitch subscriptions
5 years ago
* `twitch-webhooks` - Flask application managing Twitch webhooks subscriptions and implementing RESTful API for callbacks
* `twitch-events` - Websockets server broadcasting Twitch events (retrieved using webhooks)
7 years ago
## Deployment
6 years ago
This project consists of 7 container images (`instagram-api` `quotes-api`, `teespring-api`, `twitch-cache-api`, `twitch-subs-api`, `cms` and `nginx`), that depend on each other - they need to run simultaneously and share certain data between themselves.
7 years ago
6 years ago
Best way to manage that is with `docker-compose`. Just copy `docker-compose.yaml.example` into `docker-compose.yaml`, make necessary adjustments and fire it all up with:
7 years ago
```BASH
docker-compose up -d
```
6 years ago
## Quotes API key generation
7 years ago
6 years ago
Quotes API key is needed for `POST`, `PUT` and `DELETE` API methods.
7 years ago
6 years ago
If the `quotes-api` container is running, then the key can be generated like this:
7 years ago
```BASH
6 years ago
docker exec $QUOTES_API_CONTAINER_NAME python generate_api_key.py $USERNAME $EXPIRATION_TIME_IN_SECONDS
7 years ago
```
6 years ago
## Twitch subs API key generation
Same as above, just replace `quotes-api` with `twitch-subs-api`.
5 years ago
## Twitch events key generation
Same as above, just replace `twitch-subs-api` with `twitch-events`.