aboutsummaryrefslogtreecommitdiffstats
path: root/doc/install
diff options
context:
space:
mode:
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/postgresql.md18
-rw-r--r--doc/install/rvm.md30
2 files changed, 0 insertions, 48 deletions
diff --git a/doc/install/postgresql.md b/doc/install/postgresql.md
deleted file mode 100644
index e94f8474f..000000000
--- a/doc/install/postgresql.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# Install Postgresql
-
-Requirement
------------
-
-Minimal version : 9.1
-
-Setup
------
-
-```sh
-sudo su - postgres
-createuser -d -P -U postgres chouette
-Enter password for new role: chouette
-Enter it again: chouette
-Shall the new role be a superuser? (y/n) y
-exit
-```
diff --git a/doc/install/rvm.md b/doc/install/rvm.md
deleted file mode 100644
index b66b8b7d9..000000000
--- a/doc/install/rvm.md
+++ /dev/null
@@ -1,30 +0,0 @@
-# Install RVM
-
-If no package is available, install from sources
-
-Setup from sources
-------------------
-
-follow procedure described by [this post](https://rvm.io/rvm/install)
-
-```sh
-sudo apt-get update
-
-sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config libgdbm-dev libffi-dev libreadline-dev
-
-curl -L https://get.rvm.io | bash -s stable
-
-echo 'source ~/.rvm/scripts/rvm' >> ~/.bash_aliases && bash
-```
-
-Test
-----
-
-```sh
-type rvm | head -n 1
-```
-and if you get
-```sh
-rvm is a function
-```
-installation is ok