Skip to content

HabitKit - A simple and intuitive app to track, build, and maintain your habits for a better you!

Notifications You must be signed in to change notification settings

MichaelHolley/HabitKit

Repository files navigation

Warning

WIP - This repo is still work in progress. Issues during app-usage may occur.

HabitKit

A simple and intuitive app to track, build, and maintain your habits for a better you!

image

Running locally

Start the database: pnpm db:start

Generate Prisma Client: pnpm prisma:generate

Migrate the database: pnpm prisma:migrate-dev

Start the web server: pnpm dev

Deployment

docker-compose.yml

services:
  habitkitweb:
    image: mpholley/habitkit:latest
    restart: always
    ports:
      - 3000:3000
    depends_on:
      - db
    environment:
      - DATABASE_URL=mysql://root:mysecretpassword@db:3306/HabitKit
      - ORIGIN=
  db:
    image: mysql
    restart: always
    ports:
      - 3306:3306
    environment:
      MYSQL_ROOT_PASSWORD: mysecretpassword
      MYSQL_DATABASE: HabitKit
    volumes:
      - mysql_data:/var/lib/mysql

volumes:
  mysql_data: