Skip to content

lucas-barake/invite-system-demo

Repository files navigation

Development Guide

Prerequisites:

Before proceeding with the installation, please make sure you have the following software installed on your machine:

  • Node.js.
  • nvm
  • ESLint and Prettier extensions in your preferred editor.
  • pnpm installed npm i -g pnpm

Installation Steps

  1. Set your Node.js version to the project's version
nvm use

Running this command will instruct nvm to switch to the Node.js version specified in the nvmrc file.

  1. Install the dependencies:
pnpm install
  1. Set up your environment variables

Copy the template found in the .env.example file over to a new .env file.

cp .env.example .env

Replace the values in the .env file with your own configuration.

  1. Set up your database and cache instances:
docker-compose -f docker-compose.dev.yml up -d
  1. Run the migrations:
pnpm dlx prisma db push
  1. Start the server:
pnpm run dev

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published