Browse Source

The installation script now supports different types of installation - web only, backend only, full

Dmitriev Roman 3 months ago
parent
commit
9b926b4c6a
3 changed files with 425 additions and 359 deletions
  1. 0 11
      docs/databases/postgres/en/create_db.sql
  2. 0 11
      docs/databases/postgres/ru/create_db.sql
  3. 425 337
      install-eye.sh

+ 0 - 11
docs/databases/postgres/en/create_db.sql

@@ -1,14 +1,3 @@
--- Create database with English locale
-CREATE DATABASE stat
-WITH
-ENCODING = 'UTF8'
-LC_COLLATE = 'en_US.UTF-8'
-LC_CTYPE = 'en_US.UTF-8'
-TEMPLATE = template0
-CONNECTION LIMIT = -1;
-
-\c stat;
-
 -- Enable required extensions
 CREATE EXTENSION IF NOT EXISTS pg_trgm;
 CREATE EXTENSION IF NOT EXISTS btree_gin;

+ 0 - 11
docs/databases/postgres/ru/create_db.sql

@@ -1,14 +1,3 @@
--- Создаем базу данных с русской локалью
-CREATE DATABASE stat
-WITH
-ENCODING = 'UTF8'
-LC_COLLATE = 'ru_RU.UTF-8'
-LC_CTYPE = 'ru_RU.UTF-8'
-TEMPLATE = template0
-CONNECTION LIMIT = -1;
-
-\c stat;
-
 -- Включаем необходимые расширения
 CREATE EXTENSION IF NOT EXISTS pg_trgm;
 CREATE EXTENSION IF NOT EXISTS btree_gin;

File diff suppressed because it is too large
+ 425 - 337
install-eye.sh


Some files were not shown because too many files changed in this diff