mirror of
https://github.com/VERT-sh/VERT
synced 2026-04-25 17:15:10 +02:00
1.1 KiB
1.1 KiB
Getting Started
This file covers how to get started with VERT.
Prerequisites
Make sure you have the following installed:
Installation
First, clone the repository:
git clone https://github.com/VERT-sh/VERT
cd VERT/
Install dependencies:
bun i
And finally, make sure you create a .env file in the root of the project. We've included a .env.example file which you can use to get started.
Running Locally
To run the project locally, run bun dev.
This will start a development server. Open your browser and navigate to http://localhost:5173 to see the application.
Building for Production
To build the project for production, run bun run build.
This will build the site to the build folder. You should then use a web server like nginx to serve the files inside that folder.
Using Docker
Check the dedicated Docker page.