hestia/README.md
Benjamin Palko 8e74f36324 toc
2025-02-07 16:19:15 -05:00

1.8 KiB

Hestia

Hestia is an early stage project

Setup

# install dependencies
bun install

# set up local database
bun prisma:dev

Developing

Once you've created a project and installed dependencies, start a development server:

bun dev

# or start the server and open the app in a new browser tab
bun dev -- --open

# to use storybook for components development
bun storybook

# interact with local database
bun prisma:studio

You can access the Yoga web-app at /api/graphql

Modifying Database Schema

This section is still a work in progress

We are using Prisma as our DB ORM tool.

Building

To create a production version of your app:

bun build

Stack

Frontend

Backend

Tools

You can preview the production build with bun run preview.

To deploy your app, you may need to install an adapter for your target environment.