https://github.com/gc-victor/epic-stack-with-query
An example of the Epic Stack with Query
https://github.com/gc-victor/epic-stack-with-query
epic-stack epic-stack-example
Last synced: about 1 year ago
JSON representation
An example of the Epic Stack with Query
- Host: GitHub
- URL: https://github.com/gc-victor/epic-stack-with-query
- Owner: gc-victor
- Created: 2023-11-10T15:13:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-10T16:21:17.000Z (over 2 years ago)
- Last Synced: 2025-02-05T02:53:59.909Z (about 1 year ago)
- Topics: epic-stack, epic-stack-example
- Language: TypeScript
- Homepage:
- Size: 9.06 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Epic Stack with Query
This is an example of how to integrate the [Epic Stack](https://github.com/epicweb-dev/epic-stack) with a [Query](https://github.com/gc-victor/query).
Please, check the changes in the history of this repository to see how to integrate the Epic Stack with a Query.
It is important to set the Query environment variables. You can do it running the following commands:
Token secret:
```sh
fly secrets set QUERY_SERVER_TOKEN_SECRET=$(openssl rand -hex 32)
```
> **Note**: If you don't have openssl installed, you can also use
> [1Password](https://1password.com/password-generator) to generate a random
> secret, just replace `$(openssl rand -hex 32)` with the generated secret.
Admin email:
```sh
fly secrets set QUERY_SERVER_ADMIN_EMAIL=USE_YOUR_EMAIL
```
Admin password:
```sh
fly secrets set QUERY_SERVER_ADMIN_PASSWORD=USE_A_SECURE_PASSWORD
```
That's it!