-
Notifications
You must be signed in to change notification settings - Fork 10
/
config_template.sh
20 lines (15 loc) · 1.04 KB
/
config_template.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
# RDF output format.
# Possible values are
# ttl (Turtle, more compact)
# nt (N-Triples, more verbose but can be split on any line)
FORMAT=ttl
# List of INSEE departement codes for which the register data will be complete. The register data for the companies located in the other departements will be much lighter.
DEPARTEMENTS="35,29,56,22,75101,75102,75103,75104,75105,75106,75107,75108,75109,75110,75111,75112,75113,75114,75115,75116,75117,75118,75119,75120"
# The directory where you want tdb2.tdbloader create the database for SIRENE data (see https://jena.apache.org/documentation/tdb2/tdb2_cmds.html)
DATABASEPATH="/home/joe/fuseki/run/databases/db"
# The directory where you want tdb2.tdbloader create the database for the ontologies and reference data (see https://jena.apache.org/documentation/tdb2/tdb2_cmds.html)
SIDECARBASEPATH="/home/joe/fuseki/run/databases/onto"
# Commands that start and stop your database, in order to enable the modification of the data
STARTDB="systemctl start fuseki.service"
STOPDB="systemctl stop fuseki.service"