You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simple server-powered RSS feed reader and aggregator with mobile-ready user interface powered by Material UI and Next.js.
For users
If you want to start using Rasagi first you must find working instance.
Maybe in future I will host one, but for now you could try to get up and running one yourself.
For wannabe-selfhosters
Completing these steps will bring you a working instance of Rasagi on most devices,
hosting it on Windows is technically possible but not tested.
I recommend getting a Raspberry Pi or some old computer to use it as a server.
Get node and npm from your repository and you will be good to go.
git clone https://github.com/Firstbober/rasagi
cd rasagi
export DATABASE_URL="file:./database.db"
npm install
npx prisma db push
npm run build
npm run start
These should work, but for the long run you want to put DATABASE_URL variable into .env file.
It should look something like this:
DATABASE_URL="file:./database.db"
Changing server port is as easy as adding PORT=<number> variable into .env or before npm run start command.
Also, thanks to Ezioleq and IAlex for helping me to debug this.