Onboarding Development

Requirements

Setup Environment and install requirements

#Copy .env.example to .env and fill in your credentials.
cp .env.example .env

# Edit DATABASE_URL Depending on your mySQL Server. with the following format
DATABASE_URL="mysql://{user}:{password}@{server}:3306/{dbname}"

# Example without password and server is localhost db name is awesome
DATABASE_URL="mysql://root:@localhost:3306/awesome"
# Same as above but with password
DATABASE_URL="mysql://root:secret@localhost:3306/awesome"

Running dev server

#1. Install dependencies
npm i

#2. For development use db push, when changes are made to the schema
npm run db:sync # This commands uses db push to sync the db with schema and generate prisma client

#4. Run dev server
npm run dev

REFERENCES

Setup MySQL Docker Compose

version: "3.9"

services:
  mysql:
    image: mysql:latest
    volumes:
      - /var/lib/docker/mysql:/var/lib/mysql
    ports:
      - "3306:3306"
    environment:
      - MYSQL_ROOT_PASSWORD=mysql
      - MYSQL_DATABASE=mysql

Run the container using docker-compose up -d

Top categories

Loading Svelte Themes