-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FEAT ITEM-349-front-ajouter-un-readme-developpement :
- ajout du README-développement.md - modification du README.md
- Loading branch information
Showing
2 changed files
with
42 additions
and
36 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,40 @@ | ||
# item-client | ||
|
||
Le langage utilisé est JavaScript, avec le framework VueJs 3. | ||
|
||
Ce dépôt héberge le code source de l'interface utilisateur de Item (développée en VueJS) codée en VueJs 3. | ||
Cette interface utilisateur fonctionne en lien avec son API développée en Java : https://github.com/abes-esr/item-api/ | ||
L'application Item complète peut être déployée via Docker à l'aide de ce dépôt : https://github.com/abes-esr/item-docker/ . | ||
Les principaux plugins installés dans ce projet sont : Vite, Pinia, Vue-router, Vuetify et Axios. | ||
|
||
## Installation du projet et démarrage | ||
|
||
### Installation du projet | ||
``` | ||
npm install | ||
``` | ||
Une fois installé, il faut dupliquer le ``.env-dist`` puis renommer le duplicata en ``.env``. Completer ensuite les variables d'environnement dans le ``.env``. | ||
|
||
### Compilation et rechargement à chaud pour le développement | ||
``` | ||
npm run dev | ||
``` | ||
Une fois cette commande lancée, l'url de l'application sera affichée (dans le terminal ou dans les logs, selon l'environnement de déploiement). | ||
|
||
### Compilation complète | ||
``` | ||
npm run build | ||
``` | ||
|
||
### Compilation pour prévisualisation | ||
``` | ||
npm run preview | ||
``` | ||
|
||
### Compilation "prettier" | ||
``` | ||
npm run prettier | ||
``` | ||
|
||
### Configurations personnalisées | ||
See [Configuration Reference](https://cli.vuejs.org/config/). |
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