Skip to content

Commit c62991d

Browse files
authored
Merge branch 'main' into 407-custom-donation-input-2
2 parents ad56f70 + df290a6 commit c62991d

18 files changed

Lines changed: 687 additions & 55 deletions

.env.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Example `.env` file #
33
###########################
44

5-
# API key for the Google Civic API
6-
# See https://github.com/ProgramEquity/amplify/blob/main/.github/CONTRIBUTING.md#using-the-google-civic-information-api-locally
7-
CIVIC_API_KEY=
5+
# API key for the Cicero API
6+
# Check with the team leads for the latest Cicero API key to be used
7+
CICERO_API_KEY=
88

99
# Production environment API key for the Lob API
1010
# This value can be found in Heroku application config var of the same name
@@ -28,4 +28,4 @@ STRIPE_SECRET_KEY=sk_test_51IravfFqipIA40A3FOW6EzlXlJiXjL9V0FXKfb9n7cxh25Ww9QMA9
2828
# To run in single-campaign mode, set the following environment vars
2929
VUE_APP_CAMPAIGN_MODE = "single" # or "default" for normaal operation
3030
VUE_APP_FEATURED_CAMPAIGN = "5" # campaign's id from Postgres
31-
VUE_APP_LETTER_TEMPLATE = "" # the template associated with the featured campaign
31+
VUE_APP_LETTER_TEMPLATE = "" # the template associated with the featured campaign

.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
},
88
"extends": ["eslint:recommended", "prettier"],
99
"parserOptions": {
10-
"ecmaVersion": 12
10+
"ecmaVersion": 13,
11+
"parser": "@babel/eslint-parser"
1112
},
1213
"rules": {},
1314
"ignorePatterns": ["/dist/**/*.js"]

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ npm run build
6969
npm run lint
7070
```
7171

72+
### Runs Prettier and fixes files
73+
```shell
74+
npm run format
75+
```
76+
77+
7278
### Build and run as if in prod
7379
```shell
7480
npm start

0 commit comments

Comments
 (0)