Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: External Mapbox Styling #169

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
VUE_APP_MAPBOX_TOKEN=
VUE_APP_MAPBOX_STYLE=
VUE_APP_MAPBOX_LAYERS_STYLE=

VUE_APP_SERVER_URL=
VUE_APP_CATALOG_URL=

VUE_APP_AUTH_AUTHORITY=
VUE_APP_AUTH_ID=
Expand Down
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
env: {
node: true
},
extends: [
'plugin:vue/essential',
'@vue/standard'
'@vue/standard',
'@vue/eslint-config-prettier'
],
parserOptions: {
parser: 'babel-eslint'
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.17.1
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"semi": false,
"singleQuote": true,
"useTabs": false,
"trailingComma": "none",
"printWidth": 80
}
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,39 @@
# bed-frontend

## Project setup

```
npm install
```

### Compiles and hot-reloads for development

```
npm run serve
npm start
```

### Compiles and minifies for production

```
npm run build
```

### Run your unit tests

```
npm run test:unit
npm run test
```

### Lints and fixes files

```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

See [Configuration Reference](https://cli.vuejs.org/config/).

### Environment
Before deploy please adapt the .env file or generate corresponding environment variables as in the .env.example file.

Before deploy please adapt the .env file or generate corresponding environment variables as in the .env.example file.
4 changes: 1 addition & 3 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
presets: ['@vue/cli-plugin-babel/preset']
}
Loading
Loading