This app is Open Source. Contributors are highly welcome!
Join us on our Discord.
This project uses Node.js and MongoDB.
You need to set some environment variables to run the app. A common way is to create an .env
file, based on template.env
.
cp template.env .env
The following list shows the variables you need to set:
KEY | VALUE |
---|---|
DATABASE_URL | URI of your MongoDB server |
DISCORD_WEBHOOK_URL | Discord webhook URL for notifications (optional) |
From your terminal, you need to install the dependencies first:
npm install
Now you are ready to start the app in development mode:
npm run dev
The app requires a user to add and maintain nodes. You can create a user with the following script:
npx prisma db seed
Prisma has an integrated client to explore your database:
npx prisma studio
The project is based on Remix, a full stack React web framework focused on user experience and performance. For UI components, we use Mantine. The database is connected via Prisma, an ORM which connects to MongoDB.
Please refer to these documentations for more information.
The app is deployed on Vercel.
MIT