Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Installation and deployment

Nguyen Thanh Quang edited this page Jun 18, 2022 · 1 revision

Requirements

  • node >= 16
  • PostgreSQL
  • Either yarn or npm

Install with plain Node

git clone https://github.com/AlphaNecron/Void.git
cd Void
yarn install # or npm install
cp config.example.json config.json
nano config.json # edit the config file
yarn build # or npm run build
yarn start # or npm start

Install with Docker

git clone https://github.com/AlphaNecron/Void.git --branch=v1
cd Void
cp config.example.json config.json
nano config.json # edit the config file
docker pull alphanecron/void:v0
docker run -p 3000:3000 -v $PWD/config.json:/void/config.json -d alphanecron/void:v1

Install with Docker Compose

git clone https://github.com/AlphaNecron/Void.git --branch=v1
cd Void
cp config.example.json config.json
nano config.json # edit the config file
docker-compose up --build -d