Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
humanities
gargantext
Commits
f44af739
Commit
f44af739
authored
Jun 09, 2017
by
delanoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOC] Removing duplicate.
parent
39584bb8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
118 deletions
+2
-118
manual_install.md
docs/manual_install.md
+1
-59
manual_install.md
docs/manual_install.md
+1
-59
No files found.
docs/manual_install.md
deleted
100644 → 0
View file @
39584bb8
*
Create user gargantua
Main user of Gargantext is Gargantua (role of Pantagruel soon)!
```
bash
sudo
adduser
--disabled-password
--gecos
""
gargantua
```
*
Create the directories you need
here for the example gargantext package will be installed in /srv/
```
bash
for
dir
in
"/srv/gargantext"
"/srv/gargantext_lib"
"/srv/gargantext_static"
"/srv/gargantext_media"
"/srv/env_3-5"
;
do
sudo mkdir
-p
$dir
;
sudo chown
gargantua:gargantua
$dir
;
done
```
You should see:
```
bash
$tree
/srv
/srv
├── gargantext
├── gargantext_lib
├── gargantext_media
│ └── srv
│ └── env_3-5
└── gargantext_static
```
*
Get the main libraries
Download uncompress and make main user access to it.
PLease, Be patient due to the size of the packages libraries (27GO)
this step can be long....
```
bash
wget http://dl.gargantext.org/gargantext_lib.tar.bz2
\
&&
tar
xvjf gargantext_lib.tar.bz2
-o
/srv/gargantext_lib
\
&&
sudo chown
-R
gargantua:gargantua /srv/gargantext_lib
\
&&
echo
"Libs installed"
```
*
Get the source code of Gargantext
by cloning the repository of gargantext
```
bash
git clone ssh://gitolite@delanoe.org:1979/gargantext /srv/gargantext
\
&&
cd
/srv/gargantext
\
&&
git fetch origin refactoring
\
&&
git checkout refactoring
\
```
TODO(soon): git clone https://gogs.iscpif.fr/gargantext.git
See the
[
next steps of installation procedure
](
install.md#Install
)
docs/manual_install.md
0 → 120000
View file @
f44af739
tools/manual_install.md
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment