Skip to content

Commit

Permalink
Merge pull request #400 from GSA/master
Browse files Browse the repository at this point in the history
May release - v1.2.0
  • Loading branch information
jcastle-zz authored May 11, 2020
2 parents 450cf33 + c452fc2 commit 8170115
Show file tree
Hide file tree
Showing 55 changed files with 13,439 additions and 12,634 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,17 @@ jobs:
deploy-bundle-analysis:
docker:
- image: ubuntu
environment:
TZ: "America/New_York"
DEBIAN_FRONTEND: "noninteractive"
environment:
TZ: "America/New_York"
DEBIAN_FRONTEND: "noninteractive"
steps:
- run: apt-get update
- run: apt-get install -y tzdata
- run: ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime
- run: dpkg-reconfigure --frontend noninteractive tzdata
- run: apt-get install -y build-essential git npm nodejs
- checkout
- run: npm install
Expand Down
8 changes: 6 additions & 2 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "2"
version: '2'
checks:
similar-code:
enabled: false
Expand All @@ -7,5 +7,9 @@ checks:
method-complexity:
config:
threshold: 6
method-lines:
config:
threshold: 50
exclude_patterns:
- "src/**/*.test.js"
- 'src/**/*.test.js'
- 'styles/uswds/'
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,9 @@ typings/
.DS_Store
# Cypress files
cypress.env.json

# env files
.env.local
.env.development.local
.env.test.local
.env.production.local
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10.19
841 changes: 841 additions & 0 deletions .snyk

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Here’s how you can help contribute to code.gov:

## Getting Started

You will need node to run this website. It's built against v10.15.1. The best way to get node is to install it via `nvm`. See the [nvm installation instructions](https://github.com/nvm-sh/nvm/blob/master/README.md#installation-and-update) to set it up on your system.
You will need node to run this website. It's built against v10.19.0. The best way to get node is to install it via `nvm`. See the [nvm installation instructions](https://github.com/nvm-sh/nvm/blob/master/README.md#installation-and-update) to set it up on your system.

After you have cloned this repo, you can use `npm install` to install all of the
project’s dependencies.
Expand All @@ -45,6 +45,7 @@ If you want to override that, specify an `CODE_GOV_API_KEY` environmental variab
```
CODE_GOV_API_KEY=l87sfdi7ybc2bic7bai8cb2i176c3b872tb3 npm run start
```
An alternate approach to using your API key every time you use ```npm run start``` is to create a ```.env.local``` file and store your API key. (Remember to use ```CODE_GOV_API_KEY=...```) In accordance with [dotenv-flow](https://www.npmjs.com/package/dotenv-flow), your personal key will be ignored when committing updates to GH.

You can sign up for an [API key](https://open.gsa.gov/api/codedotgov/).

Expand Down
72 changes: 1 addition & 71 deletions assets/data/filters/tasks.json
Original file line number Diff line number Diff line change
@@ -1,71 +1 @@
{
"agencies": [
{
"name": "Consumer Financial Protection Bureau",
"value": "CFPB"
},
{
"name": "Department of Defense",
"value": "DOD"
},
{
"name": "Department of Energy",
"value": "DOE"
},
{
"name": "Department of Health and Human Services",
"value": "HHS"
},
{
"name": "General Services Administration",
"value": "GSA"
}
],
"categories": [
{
"name": "bug",
"value": "bug"
},
{
"name": "content",
"value": "content"
},
{
"name": "enhancement",
"value": "enhancement"
},
{
"name": "good first issue",
"value": "good first issue"
}
],
"languages": [],
"skillLevels": [
{
"name": "Beginner",
"value": "beginner"
},
{
"name": "Intermediate",
"value": "intermediate"
},
{
"name": "Advanced",
"value": "advanced"
}
],
"timeRequired": [
{
"name": "Small",
"value": "small"
},
{
"name": "Medium",
"value": "medium"
},
{
"name": "Large",
"value": "large"
}
]
}
{"agencies":[{"name":"Consumer Financial Protection Bureau","value":"CFPB"},{"name":"Department of Defense","value":"DOD"},{"name":"Department of Energy","value":"DOE"},{"name":"General Services Administration","value":"GSA"}],"categories":[{"name":"bug","value":"bug"},{"name":"content","value":"content"},{"name":"enhancement","value":"enhancement"},{"name":"good first issue","value":"good first issue"}],"languages":[],"skillLevels":[{"name":"Beginner","value":"beginner"},{"name":"Intermediate","value":"intermediate"},{"name":"Advanced","value":"advanced"}],"timeRequired":[{"name":"Small","value":"small"},{"name":"Medium","value":"medium"},{"name":"Large","value":"large"}]}
Binary file added assets/img/news/ssa_hackathon.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/news/summer_fellow.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 8170115

Please sign in to comment.