gancio/docs/install/classic.md
2019-07-27 13:04:06 +02:00

1.3 KiB

layout title permalink parent
default Classic /install/classic Install

Install

  1. Install Node.js and postgreSQL
curl -sL https://deb.nodesource.com/setup_12.x | bash -
apt-get install -y nodejs postgresql

source

  1. Install Gancio
npm install --global gancio
  1. Create a database (optional as you can use sqlite, but recommended)
sudo -u postgres psql
postgres=# create database gancio;
postgres=# create user gancio with encrypted password 'gancio';
postgres=# grant all privileges on database gancio to gancio;
  1. Create a user to run gancio from
adduser gancio
su gancio
  1. Test & launch interactive setup
gancio --help
gancio setup --config config.json
  1. Start
gancio --help
gancio start --config config.json
  1. Point your web browser to http://localhost:13120 or where you selected during setup.

  2. Setup nginx as a proxy

  3. Deploy in production
    If you don't use the docker way, in production you should use something like pm2:

sudo npm install --global pm2
pm2 gancio start --config config.json