Skip to content

Commit 1b226b1

Browse files
authored
Merge pull request #34 from CampusMadridProjects/dev
v1.0.1
2 parents 29672f7 + 760b006 commit 1b226b1

34 files changed

+2155
-601
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module.exports = {
55
},
66
'extends': [
77
'plugin:vue/essential',
8-
'eslint:recommended'
8+
'airbnb'
99
],
1010
rules: {
1111
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ Open this `.env` file (with any text editor) and set the environmen vars. Just c
3737
VUE_APP_API_URL=https://your-api-url.com
3838
VUE_APP_API_PEOPLE=getPeople
3939
VUE_APP_API_STARTUPS=getStartups
40+
VUE_APP_API_ORGS=getOrganizations
41+
VUE_APP_API_LOCATION=isLocationValid
42+
VUE_APP_ANALYTICS_TRACKING_ID=UA-123456789-0
4043
```
4144
*If you use the cloud-functions based backend, your URL will be something like https://us-central1-projectID.cloudfunctions.net or similar*
4245

babel.config.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module.exports = {
2-
"presets": [
2+
presets: [
33
[
4-
"@vue/app",
4+
'@vue/app',
55
{
6-
"useBuiltIns": "entry"
7-
}
8-
]
9-
]
10-
}
6+
useBuiltIns: 'entry',
7+
},
8+
],
9+
],
10+
};

0 commit comments

Comments
 (0)