Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
update-prod.sh 168 B
Newer Older
  • Learn to ignore specific revisions
  • Pierre Jarriges's avatar
    Pierre Jarriges committed
    #!/bin/sh
    
    git checkout .
    git pull origin master
    
    cd admin-frontend
    npm install
    npm run build
    
    cd ../website
    npm install
    npm run build
    
    cd ..
    docker-compose up --build