Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.22 KB

File metadata and controls

53 lines (35 loc) · 1.22 KB

VesselVigil

VesselVigil is an open-source application designed to help you track and manage boat maintenance. Key features include intervention tracking, associated accounting, and inventory management for parts required during maintenance.

Getting started

To get started, follow these steps:

Prerequisites

1. Install dependencies

yarn install

2. Set up Supabase locally

supabase init
supabase start

This will start a local Supabase instance for development. The studio will be available at http://localhost:54323.

Migrate the database schema onto your Supabase database:

supabase migration up

3. Configure environment variables

Create a .env file and add your Supabase credentials:

VITE_SUPABASE_URL=http://localhost:54321
VITE_SUPABASE_KEY=your-anon-key

4. Run the Vite development server

yarn dev

The application will be available at http://localhost:5173.

Deployment

For detailed deployment instructions, please refer to the Deployment Documentation.