Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • gitkeep
  • Sprint/2022-01
  • dev
  • master
  • Product/9-createDemoApp
  • Topic/12-createDemoApp
  • v1.0.0
  • v1.1.0
  • v1.2.0
  • v1.2.1
  • v1.3.0
11 results

Target

Select target project
  • Coscine / frontend / apps / app-demo
1 result
Select Git revision
  • gitkeep
  • Sprint/2022-01
  • dev
  • master
  • Product/9-createDemoApp
  • Topic/12-createDemoApp
  • v1.0.0
  • v1.1.0
  • v1.2.0
  • v1.2.1
  • v1.3.0
11 results
Show changes

Commits on Source 2

3 files
+ 17
1
Compare changes
  • Side-by-side
  • Inline

Files

exampleapp.nomad

0 → 100644
+14 −0
Original line number Diff line number Diff line
job "exampleapp" {
  datacenters = ["dc1"]
  
  group "exampleapp" {
    task "exampleapp" {
      driver = "raw_exec"
    
      config {
        command = "C:/Programs/Example/app/start.bat"
        args    = []
      }
    }
  }
}
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
{
  "name": "ts-vue-template",
  "version": "1.1.0",
  "version": "1.2.0",
  "private": true,
  "directories": {
    "doc": "docs"

start.bat

0 → 100644
+2 −0
Original line number Diff line number Diff line
cd %~dp0
npm install && npm run build && npm run serve
 No newline at end of file