5 Gargantext is a collaborative web platform for the exploration of sets
6 of unstructured documents. It combines tools from natural language
7 processing, text-mining, complex networks analysis and interactive data
8 visualization to pave the way toward new kinds of interactions with your
11 This software is a free software, developed by the CNRS Complex Systems
12 Institute of Paris Île-de-France (ISC-PIF) and its partners.
17 curl -sSL https://gitlab.iscpif.fr/gargantext/haskell-gargantext/raw/master/devops/docker-install | sh
20 curl -sSL https://gitlab.iscpif.fr/gargantext/haskell-gargantext/raw/master/devops/debian-install | sh
25 ### Multi-User with Graphical User Interface (Server Mode)
27 ~/.local/bin/stack --docker exec gargantext-server -- --ini "gargantext.ini" --run Prod
30 ### Command Line Mode tools
32 #### Simple cooccurrences computation and indexation from a list of Ngrams
34 stack --docker exec gargantext-cli -- CorpusFromGarg.csv ListFromGarg.csv Ouput.json
37 INSERT INTO auth_user (password, is_superuser, username, first_name, last_name, email, is_staff, is_active)
38 VALUES ('1resu', true, 'user1', 'user', '1', 'a@localhost', true, true);
40 -- nodetype NodeUser has id 1
41 -- inserted user_id = 3
42 INSERT INTO nodes (typename, user_id, name)
43 VALUES (1, 3, 'user1');
45 -- same for master user -- 'gargantua'
46 INSERT INTO auth_user (password, is_superuser, username, first_name, last_name, email, is_staff, is_active)
47 VALUES ('autnagrag, true, 'gargantua, 'gargantua, '1', 'g@localhost', true, true);
49 -- nodetype NodeUser has id 1
50 -- inserted user_id = 5
51 INSERT INTO nodes (typename, user_id, name)
52 VALUES (1, 5, 'gargantua);