4.3 KiB
Contributing to Autumn
Hello! Thank you for your interest in contributing to Autumn :)
How to contribute
-
First, set up Autumn locally using the installation guide below
-
Create a new branch for your changes
git checkout -b feature/your-feature-name
# or
git checkout -b fix/your-bug-fix
- Commit your changes with clear, descriptive messages (you can use commitizen to help with this):
git commit -m "docs: added new code snippet to concepts.md"
# or
git commit -m "fix: fixed rounding error on priceUtils.ts"
- Fetch the latest updated repo and merge with your changes
git fetch upstream/staging
git merge upstream/staging
- Push to your fork
git push origin your-branch-name
- Submit a Pull Request to the staging branch
- Go to your fork on GitHub and click "New Pull Request"
- Fill out the PR template completely
- Link any relevant issues
- Add screenshots for UI changes
Installation Guide
Requirements
- Node.js
- bun
Quickstart
Use this guide if you want to get Autumn up and running on your device in the fastest way possible! We help you spin up all the required services (database, tunnel, etc.) and env variables through our setup script.
Step 0: Fork and Clone
- Click the 'Fork' button at the top right of this repository
- Clone your fork locally:
git clone https://github.com/YOUR-USERNAME/autumn.git
Step 1: Install Dependencies
bun install
Step 2: Run Setup
bun run setup
The setup script generates required environment variables to run Autumn locally. It performs two main functions:
- Auto-spins up a Supabase database and creates required tables (optional)
- Generates a localtunnel reserved key for receiving Stripe webhooks in development
Step 3: Start Development Environment
docker compose -f docker-compose.dev.yml up # (if on windows)
# or
docker compose -f docker-compose.unix.yml up # (if on mac / linux)
Manual Setup
Use this approach if you prefer to configure your own database or tunneling solution (e.g., ngrok, cloudflared) instead of our default localtunnel setup.
- Copy
server/.env.exampletoserver/.envand fill in environment variables according to the Environment Variables guide - Copy
vite/.env.exampletovite/.env - Run the Docker command from Step 3 above
Database Management
Autumn uses Postgres as it's database solution, and Drizzle ORM to manage our queries / migrations.
Our cloud offering uses Supabase to host Postgres, but you can use any hosting solution you'd like. At the moment, our docker compose does not spin up a database for you, so you'll have to do this yourself (we help you set up Supabase super easily in our set up script).
Creating Database Tables
Make sure you have the DATABASE_URL env variable set up in server/.env before you run any of the following commands.
If you're setting up an Autumn DB for the first time, use the following command to generate the required tables
bun run db:push
Handling Migrations
When you need to create version-controlled migrations (e.g., for new releases):
-
Generate migration files:
bun run db:generateThis creates migration files based on schema changes.
-
Apply migrations:
bun run db:migrateThis applies pending migrations to your database.