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
- Clone the repository:
git clone https://github.com/JohanOhly/AirTrail.git
cd AirTrail
- Install the dependencies:
bun install
- Configure the environment variables:
cp .env.example .env
Fill in the required environment variables in the .env
file.
- Build and set up the database:
bun run build
bun run db:migrate-deploy
- Start the server:
bun ./build
The app should now be running on http://localhost:3000.