Skip to content

Commit 3583342

Browse files
authored
Merge branch 'master' into firebase
2 parents df5fad0 + 5d1a561 commit 3583342

File tree

6 files changed

+46
-15
lines changed

6 files changed

+46
-15
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
# production
1212
/build
13+
.firebase
14+
.firebaserc
1315

1416
# misc
1517
.DS_Store

.travis.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configures builds for all branches and deployment on the "prod" branch.
1+
# Configures builds for all branches and deployment on the "master" branch.
22

33
language: node_js
44
node_js: node
@@ -7,11 +7,10 @@ install: npm ci
77
script: npm test && npm run build
88

99
deploy:
10-
provider: pages
11-
local_dir: build/
10+
provider: firebase
1211
edge: true
13-
skip-cleanup: true
14-
target_branch: gh-pages
15-
github_token: $GITHUB_TOKEN
1612
on:
1713
branch: master
14+
# Skip deployment if credentials are unset
15+
condition: -n $FIREBASE_TOKEN
16+

README.md

+17-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Harm Reduction
22

3+
[![Build Status](https://travis-ci.org/codeforboston/harm-reduction.svg?branch=master)](https://travis-ci.org/codeforboston/harm-reduction)
4+
5+
[Demo App](https://cfb-harm-reduction.web.app/)
6+
37
### About the Project
48

59
We are developing a tool for the communities of Chelsea, Revere, Saugus, and Winthrop to improve multi-sector and multi-jurisdictional coordination for outreach, response, and recovery to overdoses. We will do this by improving the efficiency of existing systems, speeding up access to critical data, and aiding in cross-jurisdictional communication, in order to help these four communities save lives.
@@ -10,12 +14,9 @@ Our partner in the project is the City of Revere Substance Use Disorder Initiati
1014

1115
The SUDI office offers support and resources as well as ongoing care in these communities via direct outreach with individuals who have experienced a nonfatal overdose.
1216

13-
### Contacts
14-
15-
16-
17-
17+
### Contact Us
1818

19+
1920

2021
### Important Links
2122

@@ -34,3 +35,14 @@ Julia Newhall -- [[email protected]]([email protected])
3435
### Github Setup
3536

3637
//TODO
38+
39+
### CI/CD Setup
40+
41+
We use [Travis](https://travis-ci.org/github/codeforboston/harm-reduction) for automated testing and deployment.
42+
43+
Tests run on all branches and for pull requests. On master, after tests pass, we deploy the [site](https://cfb-harm-reduction.web.app/) using Firebase.
44+
45+
The deployment is configured with environment variables set in [Travis settings](https://travis-ci.org/github/codeforboston/harm-reduction/settings):
46+
47+
- `FIREBASE_PROJECT`: The name of the firebase project to deploy to.
48+
- `FIREBASE_TOKEN`: The token used to authenticate with Firebase, generated by `firebase login:ci`. The user that generates the token must have permission to deploy to the firebase project.

firebase.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"hosting": {
3+
"public": "build",
4+
"ignore": [
5+
"firebase.json",
6+
"**/.*",
7+
"**/node_modules/**"
8+
],
9+
"rewrites": [
10+
{
11+
"source": "**",
12+
"destination": "/index.html"
13+
}
14+
],
15+
"headers": [
16+
{"source": "/service-worker.js", "headers": [{"key": "Cache-Control", "value": "no-cache"}]}
17+
]
18+
}
19+
}

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
"last 1 safari version"
4242
]
4343
},
44-
"homepage": "https://alexjball.com/harm-reduction-frontend",
4544
"devDependencies": {
4645
"eslint": "^6.8.0",
4746
"eslint-config-prettier": "^6.11.0",

src/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import 'bootstrap/dist/css/bootstrap.min.css';
22
import React from 'react';
33
import ReactDOM from 'react-dom';
4-
import { HashRouter } from 'react-router-dom';
4+
import { BrowserRouter } from 'react-router-dom';
55
import App from './App';
66
import './index.css';
77
import * as serviceWorker from './serviceWorker';
@@ -10,11 +10,11 @@ import { AuthProvider } from './Auth';
1010

1111
ReactDOM.render(
1212
<React.StrictMode>
13-
<HashRouter>
13+
<BrowserRouter>
1414
<AuthProvider>
1515
<App />
1616
</AuthProvider>
17-
</HashRouter>
17+
</BrowserRouter>
1818
</React.StrictMode>,
1919
document.getElementById('root')
2020
);

0 commit comments

Comments
 (0)