Commit b81acb11 authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

- Maj VITE (Docker)

 - Maj script oscar-update.sh
 - Maj Yarn/Build
 - Up : Via le script d'update, des écrans dédiés indique l'état de la mise à jour
 - Up : Suppression d'anciens fichiers
parent be0fc410
Loading
Loading
Loading
Loading

.bowerrc

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
{ "directory": "public/js/vendor" }
+3 −1
Original line number Diff line number Diff line
@@ -154,6 +154,9 @@ Dockerfile_*
*#
public/documentation
module/Demo
oscar-update.output.txt
OSCAR-UPDATE-RUNNING
OSCAR-UPDATE-ERROR

## Interface Graphique
public/js/oscar/vite/dist
@@ -162,7 +165,6 @@ public/js/oscar/vite/dist/assets

## Textes personnalisés
config/autoload/oscar.text.custom.json

#################################
## ANCIENS

bin/docker-purge.sh

0 → 100644
+4 −0
Original line number Diff line number Diff line
#!/bin/bash
docker compose down
docker compose down --volumes
docker rmi $(docker images -q)

bower.json

deleted100644 → 0
+0 −43
Original line number Diff line number Diff line
{
  "name": "oscar",
  "version": "1",
  "authors": [
    "Stéphane Bouvry <stephane.bouvry@unicaen.fr>"
  ],
  "license": "???",
  "ignore": [
    "**/.*",
    "node_modules",
    "bower_components",
    "public/js/vendor",
    "test",
    "tests"
  ],
  "dependencies": {
    "open-sans-fontface": "~1.4.0",
    "select2": "~4.0.0",
    "jquery": "~2.1.4",
    "handlebars": "~3.0.3",
    "underscore": "~1.8.3",
    "Chart.js": "~1.0.2",
    "bootstrap-lnf": "https://github.com/Jacksay/bootstrap-lnf.git",
    "backbone": "~1.2.1",
    "momentjs": "~2.10.6",
    "bootstrap-datepicker": "~1.4.0",
    "requirejs": "~2.1.20",
    "timewalker": "*",
    "requirejs-text": "~2.0.14",
    "requirejs-domready": "~2.0.1",
    "jqueryui": "~1.11.4",
    "vis": "~4.16.1",
    "vue": "~2.1.4",
    "vue-resource": "~1.0.3",
    "vue-router": "~2.1.1",
    "ical.js": "~1.2.2",
    "moment-timezone": "~0.5.11",
    "in-the-box": "*",
    "papa-parse": "~4.1.4",
    "bootstrapcolorpicker": "~2.5.1",
    "bootstrap-timepicker": "~0.5.2"
  }
}
+1 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@
   - SIREN API 

### Technique
 - **Update autmatique** le script `oscar-update.sh` permet de grandement simplifier les mises à jour
 - **Version docker** Nouvelles données initiale pour la BDD
 - **Compilation JS côté serveur**

Loading