mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-19 03:11:20 +00:00
31 lines
963 B
Bash
Executable File
31 lines
963 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This install script requires the minimum requirements already installed.
|
|
# How to do this is described in detail in [setup.md](./setup.md)
|
|
|
|
# Install mariadb
|
|
sudo apt-get install -y mariadb-server
|
|
#TODO sudo mysql_secure_installation
|
|
|
|
# Install nginx
|
|
sudo apt-get install -y nginx
|
|
cd /etc/nginx/sites-enabled # TODO change directory again
|
|
sudo rm default
|
|
sudo ln -s /home/gradido/gradido/deployment/bare_metal/nginx/sites-available/gradido.conf gradido.conf
|
|
|
|
# Install yarn
|
|
sudo apt-get install -y curl
|
|
sudo apt-get install -y gnupg
|
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
|
|
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
|
sudo apt-get update
|
|
sudo apt-get install -y yarn
|
|
|
|
# Install node 16.x
|
|
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
|
|
sudo apt-get install -y nodejs
|
|
sudo apt-get install -y build-essential
|
|
|
|
# Install pm2
|
|
sudo yarn global add pm2
|