Get up and running with these simple steps:
-
Clone the repository
git clone <repository-url> cd find-it-here
-
Install pnpm globally
npm install -g pnpm
-
Install dependencies
pnpm install
-
Set up environment variables
cp apps/docs/.env.example apps/docs/.env cp packages/db/.env.example packages/db/.env
-
Start PostgreSQL with Docker Ensure Docker is installed, then run:
docker run -d \ -e POSTGRES_USER=postgres \ -e POSTGRES_PASSWORD=mysecretpassword \ -e POSTGRES_DB=find-it-here \ -p 5432:5432 \ --name find-it-here-db \ postgres
-
Generate Prisma Client and run migrations
cd packages/db pnpm prisma generate pnpm prisma migrate dev
-
Start the development server
cd ../.. pnpm dev