Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.03 KB

INSTALL.md

File metadata and controls

33 lines (23 loc) · 1.03 KB

INSTALL

  1. 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
  1. Modify Environment Variables

    Copy the .env.example file to create a .env file. Modify the .env file to set necessary environment variables such as OPENAI_API_KEY, SECRET_KEY, and DEPLOYMENT_URL.

    cp .env.example .env
    # Edit .env to include necessary environment variables

    Modify docker-compose.yml as needed (e.g. ports, volumes, etc.)

  2. Start the server

docker compose up -d

Access the Application

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.