-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e733d0
commit 0e54e3b
Showing
2 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2019 Ministères de la Transition écologique et solidaire & Cohésion des territoires | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# RapportNav | ||
|
||
Outil pour éditer des rapports de mission de contrôle, à destination des agents de la Direction des Affaires Maritimes (DAM). | ||
L'objectif de l'outil est de permettre la centralisation des données d'une mission de contrôle pour produire à l'ensemble des parties prenantes (environnement, sécurité maritime, gens de mers, ...) les rapports nécessaire ou exposer la base à un outil de visualisation pour le suivi d'indicateurs. | ||
L'objectif de l'outil est de permettre la centralisation des données d'une mission de contrôle pour produire à l'ensemble des parties prenantes (environnement, sécurité maritime, gens de mers, ...) les informations nécessaires ou exposer la base de données à un outil de visualisation pour le suivi d'indicateurs. | ||
|
||
L'application est développée avec Symfony 4, après avoir cloné le dépôt et installé les dépendances via composer il est nécessaire de configurer l'application. | ||
Pour ce faire, renommer le fichier d'exemple `.template.env` en `.env.local` et y insérer les informations nécessaires (connexion à la base de données, ...). | ||
|
@@ -14,7 +14,7 @@ Pour proposer de nouvelles fonctionnalités ouvrez d'abord une issue pour échan | |
|
||
## Licence, Auteurs | ||
|
||
Les contenus accessibles dans ce dépôt sont placés sous `**TODO : licence libre à valider**`. Vous êtes libre de réutiliser les contenus de ce dépôt sous les conditions précisées dans cette licence. | ||
Les contenus accessibles dans ce dépôt sont placés sous MIT. Vous êtes libre de réutiliser les contenus de ce dépôt sous les conditions précisées dans cette licence. | ||
|
||
Les droits d'auteur sont détenus par le Ministère de la transition écologique et solidaire, Sébastien Touzé et tout contributeur dont les nom sont disponible dans l'historique des commits du dépôt. | ||
Pour tout contact, vous pouvez ouvrir une issue ou envoyer un mail à [[email protected]](mailto:[email protected]). | ||
|
@@ -47,9 +47,11 @@ Before taking the next steps, create your environment `.env.local` file copying | |
You will need to configure : | ||
* the app setting (**APP_ENV** and **APP_SECRET**) | ||
* note that APP_ENV can be *prod*, *dev* or you can add other environment [see Symfony documentation for more information](https://symfony.com/doc/current/configuration.html#configuration-environments) | ||
* make APP_SECRET random and unique, it is used as a seed for various functionalities [see Symfony documentation for more information](https://symfony.com/doc/current/reference/configuration/framework.html#secret) | ||
* make APP_SECRET random and unique, it is used as a seed for various functions [see Symfony documentation for more information](https://symfony.com/doc/current/reference/configuration/framework.html#secret) | ||
* the database access and version (**DATABASE_URL** and **DATABASE_VERSION**) | ||
|
||
Same goes for the front parameters, create `assets/js/params.json` from `assets/js/template.params.json` and complete it with your values. | ||
|
||
Then finish install: | ||
|
||
```(bash) | ||
|
@@ -75,7 +77,7 @@ Regarding coding style, if you use PHPStorm it should follow the coding rules in | |
|
||
## Authors, licence | ||
|
||
This code is under `**TODO**` licence. | ||
This code is under MIT licence. | ||
|
||
© Ministère de la transition écologique et Solidaire, Sébastien Touzé | ||
© Contributors visible in repository history | ||
|