Visit the previous quick start guide.
💿 1) Install the dependencies:
npm install
💿 2) Duplicate .env.example
file to → .env
.
cp .env.example .env
💿 3) Set up the minimum variables:
APP_NAME
: Your app name.SESSION_SECRET
: A secret string.DATABASE_URL
: This is tied to the database provider at prisma/schema.prisma
(default is PostgreSQL).💿 4) Create and seed the database:
npx prisma migrate dev --name init
🌱 The seed command has been executed.
If you get any issues, try pushing the database changes manually, and then seeding:
npx prisma db push
npx prisma db seed
If for any reason this also fails, run the following commands for a clean install:
npm cache clean --force
rm -rf package-lock.json node_modules
npm cache verify
npm install
By default, the codebase seeds the following data (see prisma/seed.ts
):
admin@email.com
and password is password
.password
.💿 5) Start the application:
npm run dev
Open localhost:3000, you'll see the landing page:
We respect your privacy. We respect your privacy.
TLDR: We use cookies for language selection, theme, and analytics. Learn more. TLDR: We use cookies for language selection, theme, and analytics. Learn more