Deployment Guide
Storypoint Estimate can be self-hosted on various platforms. This guide covers deployment to Vercel with Supabase.
Prerequisites
Section titled “Prerequisites”1. Clone the Repository
Section titled “1. Clone the Repository”git clone https://github.com/thatcatdev/sakiyomi.gitcd sakiyomi2. Set Up Supabase
Section titled “2. Set Up Supabase”- Create a new Supabase project
- Run the migrations:
Terminal window npx supabase link --project-ref YOUR_PROJECT_REFnpx supabase db push
3. Configure Environment Variables
Section titled “3. Configure Environment Variables”Create a .env file:
PUBLIC_SUPABASE_URL=https://your-project.supabase.coPUBLIC_SUPABASE_ANON_KEY=your-anon-key4. Deploy to Vercel
Section titled “4. Deploy to Vercel”- Push your repo to GitHub
- Import the project in Vercel
- Add the environment variables
- Deploy!
Alternative Platforms
Section titled “Alternative Platforms”The app uses the Astro Vercel adapter, but you can swap it for:
- Netlify:
@astrojs/netlify - Node.js:
@astrojs/node - Cloudflare:
@astrojs/cloudflare
See the Astro deployment docs for more options.