- View your subscriptions in the mini app
- Multi-language support (English, Russian)
The application requires the following environment variables to be set:
| Variable | Description |
|---|---|
AURA_PANEL_URL |
Aura URL, can be http://aura-backend:3000 or https://aura.example.com |
AURA_TOKEN |
Authentication token for Aura API |
BUY_LINK |
The URL for purchase actions |
CRYPTO_LINK |
Allows using encrypted links (currently supported Happ application). If no applications supporting cryptolink are present in app-config.json configuration, these links will not be displayed |
REDIRECT_LINK |
Allows you to specify a custom redirect page URL for deep links. Useful for handling protocols like v2box:// in Telegram Desktop (Windows). |
AUTH_API_KEY |
If you use "Caddy with security" or TinyAuth for Nginx addon, you can place here X-Api-Key, which will be applied to requests to Aura Panel. |
|
- Create new directory for mini app
mkdir /opt/aura-telegram-app && cd /opt/aura-telegram-app- Download and configure the environment variables.
curl -o .env https://raw.githubusercontent.com/localzet/aura-telegram-app/refs/heads/main/.env.example- Configure the environment variables.
nano .env- Create docker-compose.yml file
nano docker-compose.ymlExample below.
services:
aura-telegram-app:
image: ghcr.io/localzet/aura-telegram-app:latest
container_name: aura-telegram-app
hostname: aura-telegram-app
env_file:
- .env
restart: always
ports:
- '3020:3020'- Run containers.
docker compose up -d && docker compose logs -f - Mini app is now running on http://127.0.0.1:3020
Now we are ready to move on the Reverse Proxy installation.
-
Pull the latest Docker image:
docker compose pull
-
Restart the containers:
docker compose down && docker compose up -d