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
17c8cc23
Commit
17c8cc23
authored
Jul 10, 2017
by
delanoe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[DOC] adding changelog.
parent
78e9b062
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
144 additions
and
2 deletions
+144
-2
CHANGELOG.md
CHANGELOG.md
+2
-0
manual_install.md
docs/manual_install.md
+71
-1
manual_install.md
docs/manual_install.md
+71
-1
No files found.
CHANGELOG.md
View file @
17c8cc23
...
...
@@ -2,6 +2,8 @@
*
Guided Tour
*
Sources form highlighting crawlers
## Version 3.0.7
*
Alembic implemented to manage database migrations
## Version 3.0.6.8
*
REPEC Crawler (connection with https://multivac.iscpif.fr)
...
...
docs/manual_install.md
deleted
120000 → 0
View file @
78e9b062
tools/manual_install.md
\ No newline at end of file
docs/manual_install.md
0 → 100644
View file @
17c8cc23
*
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 stable
\
&&
git checkout stable
\
```
TODO(soon): git clone https://gogs.iscpif.fr/gargantext.git
*
Install and configure the virtual environment
```
bash
cd
/srv/
pip3
install
virtualenv
virtualenv /srv/env_3-5
-p
/usr/bin/python3.5
pip
install
-r
/srv/gargantext/install
echo
'/srv/gargantext'
>
/srv/env_3-5/lib/python3.5/site-packages/gargantext.pth
echo
'alias venv="source /srv/env_3-5/bin/activate"'
>>
~/.bashrc
```
See the
[
next steps of installation procedure
](
install.md#Install
)
See the
[
next manual steps of installation procedure
](
Debian.sh
)
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