diff --git a/app/.browserslistrc b/.browserslistrc similarity index 100% rename from app/.browserslistrc rename to .browserslistrc diff --git a/app/.env b/.env similarity index 100% rename from app/.env rename to .env diff --git a/app/.gitignore b/.gitignore similarity index 100% rename from app/.gitignore rename to .gitignore diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 29f9b70..c94b860 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,16 +6,15 @@ build site: image: node:lts stage: build script: - - cd app - npm ci --cache .npm --prefer-offline - npm run build cache: key: ${CI_COMMIT_REF_SLUG} paths: - - app/.npm + - .npm artifacts: paths: - - app/dist + - dist deploy site: image: instrumentisto/rsync-ssh @@ -29,4 +28,4 @@ deploy site: - chmod 644 ~/.ssh/known_hosts - eval $(ssh-agent -s) - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - - - rsync -vr -e "ssh -p ${SSH_PORT}" app/dist/ "${DEPLOY_DEST}" + - rsync -vr -e "ssh -p ${SSH_PORT}" dist/ "${DEPLOY_DEST}" diff --git a/app/babel.config.js b/babel.config.js similarity index 100% rename from app/babel.config.js rename to babel.config.js diff --git a/app/package-lock.json b/package-lock.json similarity index 100% rename from app/package-lock.json rename to package-lock.json diff --git a/app/package.json b/package.json similarity index 100% rename from app/package.json rename to package.json diff --git a/app/public/index.html b/public/index.html similarity index 100% rename from app/public/index.html rename to public/index.html diff --git a/app/src/App.vue b/src/App.vue similarity index 100% rename from app/src/App.vue rename to src/App.vue diff --git a/app/src/components/AudioArea.vue b/src/components/AudioArea.vue similarity index 100% rename from app/src/components/AudioArea.vue rename to src/components/AudioArea.vue diff --git a/app/src/components/SVGContent.vue b/src/components/SVGContent.vue similarity index 100% rename from app/src/components/SVGContent.vue rename to src/components/SVGContent.vue diff --git a/app/src/components/VideoScroll.vue b/src/components/VideoScroll.vue similarity index 100% rename from app/src/components/VideoScroll.vue rename to src/components/VideoScroll.vue diff --git a/app/src/main.ts b/src/main.ts similarity index 100% rename from app/src/main.ts rename to src/main.ts diff --git a/app/src/shims-vue.d.ts b/src/shims-vue.d.ts similarity index 100% rename from app/src/shims-vue.d.ts rename to src/shims-vue.d.ts diff --git a/app/src/store/index.ts b/src/store/index.ts similarity index 100% rename from app/src/store/index.ts rename to src/store/index.ts diff --git a/app/src/utils.ts b/src/utils.ts similarity index 100% rename from app/src/utils.ts rename to src/utils.ts diff --git a/app/tsconfig.json b/tsconfig.json similarity index 100% rename from app/tsconfig.json rename to tsconfig.json diff --git a/app/vue.config.js b/vue.config.js similarity index 100% rename from app/vue.config.js rename to vue.config.js