Ascent Svelte Themes

Ascent

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

Ascent

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

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:
  ascentweb:
    image: mpholley/ascent:latest
    restart: always
    ports:
      - 3000:3000
    depends_on:
      - db
    environment:
      - DATABASE_URL=mysql://root:mysecretpassword@db:3306/Ascent
      - ORIGIN=
  db:
    image: mysql
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: mysecretpassword
      MYSQL_DATABASE: Ascent
    volumes:
      - mysql_data:/var/lib/mysql

volumes:
  mysql_data:

Top categories

Loading Svelte Themes