-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # README.md
- Loading branch information
Showing
152 changed files
with
15,416 additions
and
2,987 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
node_modules | ||
npm-debug.log | ||
Dockerfile* | ||
.dockerignore | ||
.git | ||
.gitignore | ||
README.md | ||
LICENSE | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"globals": { | ||
"STAC_BROWSER_VERSION": "readonly", | ||
"CONFIG_PATH": "readonly", | ||
"CONFIG_CLI": "readonly", | ||
"require": "readonly" | ||
}, | ||
"extends": [ | ||
"plugin:vue/strongly-recommended", | ||
"eslint:recommended" | ||
], | ||
"ignorePatterns": [ | ||
"**/stac-fields", | ||
"**/stac-migrate", | ||
"**/stac-layer", | ||
"config.js", | ||
"*.config.js" | ||
], | ||
"rules": { | ||
"curly": [1, "all"], | ||
"semi": [1, "always"], | ||
"vue/multi-word-component-names": "off", | ||
"vue/singleline-html-element-content-newline": "off", | ||
"vue/attribute-hyphenation": "off", | ||
"vue/max-attributes-per-line": ["error", { | ||
"singleline": { | ||
"max": 6 | ||
}, | ||
"multiline": { | ||
"max": 4 | ||
} | ||
}], | ||
"vue/component-tags-order": ["error", { | ||
"order": ["template", "script", "style"] | ||
}], | ||
"vue/order-in-components": "error", | ||
"vue/this-in-template": "error", | ||
"vue/match-component-file-name": "error" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
* @m-mohr | ||
Dockerfile @waystilos @geospatial-jeff | ||
src/locales/de-CH @p1d1d1 | ||
src/locales/es @rnanclares | ||
src/locales/fr @jfbourgon | ||
src/locales/fr-CA @jfbourgon | ||
src/locales/fr-CH @p1d1d1 | ||
src/locales/it @p1d1d1 | ||
src/locales/it-CH @p1d1d1 | ||
src/locales/ro @mneagul |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Deploy | ||
on: | ||
push: | ||
branches: | ||
- dev | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 'lts/*' | ||
- uses: actions/checkout@v3 | ||
- run: npm install | ||
- run: npm run build -- --pathPrefix="/stac-browser" --historyMode=hash | ||
- uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: dist | ||
exclude_assets: 'report.html' | ||
user_name: 'STAC Browser CI' | ||
user_email: matthias.mohr@radiant.earth |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM node:lts-alpine | ||
|
||
ARG catalogURL | ||
|
||
RUN npm install -g serve | ||
|
||
WORKDIR /app | ||
|
||
COPY package*.json ./ | ||
|
||
RUN npm install | ||
|
||
COPY . . | ||
|
||
RUN npm run build -- --catalogUrl=$catalogURL | ||
|
||
EXPOSE 8080 | ||
|
||
CMD [ "serve", "-s", "dist", "-l", "8080" ] |
Oops, something went wrong.