2023-09-29 21:01:11 +03:00
|
|
|
---
|
|
|
|
title: Source Installation
|
|
|
|
description: Install and run homepage from source
|
|
|
|
---
|
|
|
|
|
|
|
|
First, clone the repository:
|
|
|
|
|
|
|
|
```bash
|
2023-10-04 23:15:59 -07:00
|
|
|
git clone https://github.com/gethomepage/homepage.git
|
2023-09-29 21:01:11 +03:00
|
|
|
```
|
|
|
|
|
|
|
|
Then install dependencies and build the production bundle (I'm using pnpm here, you can use npm or yarn if you like):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pnpm install
|
|
|
|
pnpm build
|
|
|
|
```
|
|
|
|
|
|
|
|
If this is your first time starting, copy the `src/skeleton` directory to `config/` to populate initial example config files.
|
|
|
|
|
|
|
|
Finally, run the server:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
pnpm start
|
|
|
|
```
|