mirror of
https://github.com/revanced/revanced-releases-api.git
synced 2025-04-30 06:24:27 +02:00
11 lines
269 B
Bash
11 lines
269 B
Bash
#!/bin/bash
|
|
|
|
# This script is used to setup the environment variables
|
|
|
|
export GITHUB_TOKEN=your_token
|
|
export UVICORN_HOST=0.0.0.0
|
|
export UVICORN_PORT=8000
|
|
export UVICORN_LOG_LEVEL=debug
|
|
export REDIS_URL=127.0.0.1
|
|
export REDIS_PORT=6379
|
|
export SENTRY_DSN=your_sentry_dsn |