-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
beff7cf
commit 61d1e9f
Showing
97 changed files
with
14,377 additions
and
0 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 @@ | ||
>= 0.5% | ||
last 2 major versions | ||
not dead | ||
Chrome >= 60 | ||
Firefox >= 60 | ||
Firefox ESR | ||
iOS >= 12 | ||
Safari >= 12 | ||
not Explorer <= 11 |
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,25 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true | ||
}, | ||
'extends': [ | ||
'plugin:vue/vue3-essential', | ||
'eslint:recommended', | ||
'@vue/typescript/recommended' | ||
], | ||
parserOptions: { | ||
ecmaVersion: 2020 | ||
}, | ||
overrides: [ | ||
{ | ||
files: [ | ||
'**/__tests__/*.{j,t}s?(x)', | ||
'**/tests/unit/**/*.spec.{j,t}s?(x)' | ||
], | ||
env: { | ||
mocha: true | ||
} | ||
} | ||
] | ||
} |
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: Build | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- experimental/** | ||
- master | ||
pull_request: | ||
branches-ignore: | ||
- experimental/** | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: brdgm/github-action-build@v1 | ||
with: | ||
sonar-token: ${{ secrets.SONARCLOUD_TOKEN }} | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |
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,23 @@ | ||
name: Deploy | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: Production | ||
url: "https://brdgm.me/${{ steps.deploy.outputs.app-deploy-name }}" | ||
|
||
steps: | ||
- uses: brdgm/github-action-deploy@v1 | ||
id: deploy | ||
with: | ||
gh-site-deploy-pat: ${{ secrets.GH_SITE_DEPLOY_PAT }} | ||
gh-site-deploy-username: ${{ secrets.GH_SITE_DEPLOY_USERNAME }} | ||
gh-site-deploy-email: ${{ secrets.GH_SITE_DEPLOY_EMAIL }} | ||
gh-site-deploy-name: ${{ secrets.GH_SITE_DEPLOY_NAME }} |
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,24 @@ | ||
name: Release and Deploy | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: Production | ||
url: "https://brdgm.me/${{ steps.release.outputs.app-deploy-name }}" | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- uses: brdgm/github-action-release@v1 | ||
id: release | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
gh-site-deploy-pat: ${{ secrets.GH_SITE_DEPLOY_PAT }} | ||
gh-site-deploy-username: ${{ secrets.GH_SITE_DEPLOY_USERNAME }} | ||
gh-site-deploy-email: ${{ secrets.GH_SITE_DEPLOY_EMAIL }} | ||
gh-site-deploy-name: ${{ secrets.GH_SITE_DEPLOY_NAME }} |
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,5 @@ | ||
{ | ||
"i18n-ally.localesPaths": [ | ||
"src/locales" | ||
] | ||
} |
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,14 @@ | ||
module.exports = { | ||
presets: [ | ||
'@vue/cli-plugin-babel/preset' | ||
], | ||
env: { | ||
test: { | ||
plugins: [ | ||
['istanbul', { | ||
useInlineSourceMaps: false | ||
}] | ||
] | ||
} | ||
} | ||
} |
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,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Apiary Solo Helper</title> | ||
<meta name="description" content="Autobahn Solo Helper"> | ||
<meta name="viewport" content="width=device-width,initial-scale=1.0"> | ||
<meta name="theme-color" content="#333"> | ||
<meta charset="utf-8"> | ||
<link rel="icon" sizes="any" href="/favicon.ico"> | ||
<link rel="icon" type="image/svg+xml" href="/img/icons/favicon.svg"> | ||
<link rel="apple-touch-icon" href="/img/icons/apple-touch-icon-180x180.png" sizes="180x180"> | ||
<link rel="mask-icon" href="/img/icons/maskable-icon-512x512.png" color="#fff"> | ||
<!-- Matomo Tracking: Cookie-less and GDPR-conformant --> | ||
<script> | ||
var _paq = window._paq = window._paq || []; | ||
(function() { | ||
var u="//matomo.brdgm.me/"; | ||
_paq.push(['setTrackerUrl', u+'matomo.php']); | ||
_paq.push(['setSiteId', '2']); | ||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; | ||
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); | ||
})(); | ||
</script> | ||
<!-- End Matomo Code --> | ||
</head> | ||
<body> | ||
<noscript> | ||
<strong>We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> | ||
</noscript> | ||
<div id="app"></div> | ||
<script type="module" src="/src/main.ts"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.