git clone https://github.com/Michael-Liendo/contapp.git
# step into repository directory
cd ./contapp
# Install dependencies
npm install
# Build the shared package
npm run shared:build# Go to server
cd ./server
# Copy .env file
cp .env.example .env
# Run a PostgreSQL with Docker Compose
docker compose up
# Run the database migrations
npm run migrations:up
# Run the server
npm run dev# Go to server
cd ./client
# Copy .env file
cp .env.example .env
# Run the server
npm run client:devLicensed under the MIT License