Commit 02f86ee0 authored by delanoe's avatar delanoe

Removing test names.

parent 80067b10
Docker installation Docker installation
## Quick Manual
## Install docker.io && sudo
## sudo docker build -t gargantext .
## docker run -i -t gargantext /bin/bash
# Install Docker
# Debian/Ubuntu: apt-get install docker
# run turboparser port, with python 3.4
#docker run -d -p 8000:8000 -v /srv:/srv -t gargantext python /srv/gargantext/gargantext.py
For dev: cd dev and run install For dev: cd dev and run install
Fro prod : install dev-version, cd prod and run install Fro prod : install dev-version, cd prod and run install
...@@ -40,12 +40,12 @@ function do_cker { ...@@ -40,12 +40,12 @@ function do_cker {
### Create directories in /srv ### Create directories in /srv
# Linux only # Linux only
function create_folders { function create_folders {
for dir in "/srv2/gargantext"\ for dir in "/srv/gargantext"\
"/srv2/gargantext_lib"\ "/srv/gargantext_lib"\
"/srv2/gargantext_static"\ "/srv/gargantext_static"\
"/srv2/gargantext_media"\ "/srv/gargantext_media"\
"/srv2/gargantext_data"\ "/srv/gargantext_data"\
"/srv2/env_3-5"; do \ "/srv/env_3-5"; do \
sudo mkdir -p $dir ;\ sudo mkdir -p $dir ;\
sudo chown gargantua:gargantua $dir ; \ sudo chown gargantua:gargantua $dir ; \
done done
...@@ -56,8 +56,8 @@ done ...@@ -56,8 +56,8 @@ done
function git_config { function git_config {
### TODO (soon) : git clone https://gogs.iscpif.fr/gargantext.git ### TODO (soon) : git clone https://gogs.iscpif.fr/gargantext.git
git clone ssh://gitolite@delanoe.org:1979/gargantext /srv2/gargantext \ git clone ssh://gitolite@delanoe.org:1979/gargantext /srv/gargantext \
&& cd /srv2/gargantext \ && cd /srv/gargantext \
&& git fetch origin refactoring \ && git fetch origin refactoring \
&& git checkout refactoring && git checkout refactoring
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment