tricoteuses-legifrance/README.md

117 lines
2.4 KiB
Markdown

# Tricoteuses Legal Explorer
## _Web API, site & library to browse legal open data from French Direction de l'information légale et administrative (Dila)_
_Tricoteuses Legal Explorer_ is free and open source software.
- [software repository](https://git.en-root.org/tricoteuses/tricoteuses-legal-explorer)
- [GNU Affero General Public License version 3 or greater](https://git.en-root.org/tricoteuses/tricoteuses-legal-explorer/blob/master/LICENSE.md)
Legal data sources:
- https://www.dila.premier-ministre.gouv.fr/repertoire-des-informations-publiques/les-donnees-juridiques
- DOLE: https://echanges.dila.gouv.fr/OPENDATA/DOLE/
- JORF: https://echanges.dila.gouv.fr/OPENDATA/JORF/
- KALI: https://echanges.dila.gouv.fr/OPENDATA/KALI/
- LEGI: https://echanges.dila.gouv.fr/OPENDATA/LEGI/
Main definitions used by these data: https://www.legifrance.gouv.fr/contenu/Media/files/lexique-api-lgf.docx
## Installation
### Create database
Using Debian GNU/Linux, install PostgreSQL, then:
```sh
sudo su - postgres
createuser legi -P # and enter the password
createdb -O legi legi
psql legi
CREATE EXTENSION IF NOT EXISTS pg_trgm;
\q
exit
```
### Install dependencies
```sh
npm install
```
## Server Configuration
Create a `.env` file to set configuration variables (you can use `example.env` as a template). Then:
```sh
npm run configure
```
## Datasets Initialization
```sh
mkdir -p ../dila-data/dole
cd ../dila-data/dole
git init
cd -
npx tsx src/scripts/download_dila_dataset.ts dole
mkdir -p ../dila-data/jorf
cd ../dila-data/jorf
git init
cd -
npx tsx src/scripts/download_dila_dataset.ts jorf
mkdir -p ../dila-data/kali
cd ../dila-data/kali
git init
cd -
npx tsx src/scripts/download_dila_dataset.ts kali
mkdir -p ../dila-data/legi
cd ../dila-data/legi
git init
cd -
npx tsx src/scripts/download_dila_dataset.ts legi
```
## Datasets Update
```sh
npx tsx src/scripts/download_dila_dataset.ts dole
npx tsx src/scripts/download_dila_dataset.ts jorf
npx tsx src/scripts/download_dila_dataset.ts kali
npx tsx src/scripts/download_dila_dataset.ts legi
```
## Database Update
```sh
npx tsx src/scripts/import_dole.ts
npx tsx src/scripts/import_jorf.ts
npx tsx src/scripts/import_kali.ts
npx tsx src/scripts/import_legi.ts
```
## Server Launch
In development mode:
```sh
npm run dev
```
In production mode:
```sh
npm run build
npm run preview
```
### Package Generation & Publishing
```sh
npm version patch # or major or minor
npm run package
npm publish ./package
```