Skip to main content

Manual Installation

note

This guide is for advanced users who want to install the app manually. If you are not comfortable with the command line, we recommend using the one-click installer.

Requirements

Installation

  1. Clone the repository:
git clone https://github.com/JohanOhly/AirTrail.git
cd AirTrail
  1. Install the dependencies:
bun install
  1. Configure the environment variables:
cp .env.example .env

Fill in the required environment variables in the .env file.

  1. Build and setup the database:
bun run build
bun run db:migrate
  1. Start the server:
bun ./build

The app should now be running on http://localhost:3000.