Skip to content
Snippets Groups Projects
Select Git revision
  • 6bc956978dbcf8a8a83a567a1f6bd63022ba0f2a
  • main default protected
  • correction_video
  • going_further
  • ImprovedMouseInteraction
  • final2023
  • template
  • ModifGUI
8 results

gradlew.bat

Blame
  • Forked from YAGOUBI Rim / Game of life Template
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .gitlab-ci.yml 372 B
    stages:
      - build_stage
      - deploy_stage
    
    build:
      stage: build_stage
      image: node
      script:
    #- apt update -y
       # - apt install npm -y
        - npm install
      artifacts:
        paths:
          - node_modules
          - package-lock.json
    
    
    
    deploy:
      stage: deploy_stage
      image : node
      script:
      #  - apt update -y
      #  - apt install nodejs -y
        - node app.js > /dev/null 2>&1 &