diff --git a/covexo.yaml b/covexo.yaml new file mode 100644 index 0000000..8cfc0de --- /dev/null +++ b/covexo.yaml @@ -0,0 +1,21 @@ +name: my-react-app +containers: + - name: nodejs + image: 'node:9.4' + runtimeOptions: + cmd: run start + workDir: /app + entryPoint: npm + initScript: |- + npx create-react-app my-react-app + mv my-react-app/* ./ + rm -r my-react-app/ + env: + NODE_ENV: dev + persistentFolders: + - name: source-code + localSubPath: ./ + containerPath: /app + routes: + - hostPrefix: '' + containerPort: 3000