- Download Docker Compose and .env.example
wget https://raw.githubusercontent.com/yinan-c/rssbrew/main/docker-compose.yml
wget https://raw.githubusercontent.com/yinan-c/rssbrew/main/.env.example
-
Modify Environment Variables
Copy the
.env.example
file to create a.env
file. Modify the.env
file to set necessary environment variables such asOPENAI_API_KEY
,SECRET_KEY
, andDEPLOYMENT_URL
.cp .env.example .env # Edit .env to include necessary environment variables
Modify
docker-compose.yml
as needed (e.g. ports, volumes, etc.) -
Start the server
docker compose up -d
After starting the server, you can access the application via http://localhost:8000/.
The default account credentials are:
- Username:
admin
- Password:
changeme
It is recommended to change the default password after your first login for security reasons. You can configure your RSS feeds, set filters, and adjust other settings from there.