This commit is contained in:
MartinBraquet
2025-11-15 14:12:06 +01:00
parent bbf3970121
commit fead7459d4
3 changed files with 8 additions and 3 deletions

View File

@@ -105,11 +105,10 @@ git clone https://github.com/<your-username>/Compass.git
cd Compass
```
Install `opentofu`, `docker`, and `yarn`. Try running this on Linux or macOS for a faster install:
Install `yarn` (if not already installed):
```bash
./setup.sh
npm install --global yarn
```
If it doesn't work, you can install them manually (google how to install `opentofu`, `docker`, and `yarn` for your OS).
Then, install the dependencies for this project:
```bash

View File

@@ -27,6 +27,12 @@ gcloud auth login
gcloud config set project YOUR_PROJECT_ID
```
You also need `opentofu` and `docker`. Try running this (from root) on Linux or macOS for a faster install:
```bash
./script/setup.sh
```
If it doesn't work, you can install them manually (google how to install `opentofu` and `docker` for your OS).
### Setup
This section is only for the people who are creating a server from scratch, for instance for a forked project.

View File