]> Git — Sourcephile - gargantext.git/blob - start
build: remove cabal-install and stack config files
[gargantext.git] / start
1 #!/bin/bash
2
3 echo "GarganText: Starting project..."
4 echo "GarganText: First, compiling code..."
5 bin/install
6 echo "GarganText: code compiled [OK]"
7 echo "GarganText: docker for postgresql database..."
8 cd devops/docker
9 docker compose up -d
10 echo "GarganText: docker for postgresql database [OK]"
11 cd ../../
12 echo "GarganText: gargantext-server with stack and nix..."
13 stack --nix exec gargantext-server -- --ini gargantext.ini --run Prod
14 echo "GarganText: gargantext-server with stack and nix [OK]"
15 echo "GarganText: project stopped."
16