chronark / highstorm
- понедельник, 6 ноября 2023 г. в 00:00:09
Open Source Event Monitoring
Thank you for considering contributing to our open source project! We appreciate your interest and are excited to have you on board. This document outlines the steps you need to follow to contribute to the project effectively. Please read the guidelines carefully and feel free to reach out if you have any questions.
Before getting started, please ensure that you have the following third-party services set up:
To install the project and its dependencies, follow these steps:
Ensure you have pnpm
installed on your system. If not, you can install it by running:
npm install -g pnpm
Run the following command to install the project dependencies:
pnpm install
After setting up the required services, you need to set the corresponding environment variables in the /apps/web/.env
file. To do this, follow these steps:
.env.example
file:
cp apps/web/.env.example apps/web/.env
/apps/web/.env
file in a text editor and populate the values for the services mentioned above.To prepare the Prisma database, follow these steps:
/apps/web
directory:
cd apps/web
npx prisma db push
To prepare the Tinybird database, follow these steps:
/apps/web/lib/tinybird
directory:
cd apps/web/lib/tinybird
tb push datasources/
tb push
Note: If the CLERK_WEBHOOK_SECRET env variable is not set, pass an empty string, and make sure to visit /onboarding
after signing up.
To build the project, execute the following command:
pnpm build
To run the project locally, use the following command:
pnpm turbo run dev --filter=web