Skip to content

Commit b127e81

Browse files
Merge pull request #1 from listingslab/staging
Initialises project
2 parents c843243 + d6c9ef0 commit b127e81

File tree

4 files changed

+89
-2
lines changed

4 files changed

+89
-2
lines changed

.firebaserc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "listingalab-bitcoin"
4+
}
5+
}

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
build
2+
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
firebase-debug.log*
10+
firebase-debug.*.log*
11+
12+
# Firebase cache
13+
.firebase/
14+
15+
# Firebase config
16+
17+
# Uncomment this if you'd like others to create their own Firebase project.
18+
# For a team working on the same Firebase project(s), it is recommended to leave
19+
# it commented so all members can deploy to the same project(s) in .firebaserc.
20+
# .firebaserc
21+
22+
# Runtime data
23+
pids
24+
*.pid
25+
*.seed
26+
*.pid.lock
27+
28+
# Directory for instrumented libs generated by jscoverage/JSCover
29+
lib-cov
30+
31+
# Coverage directory used by tools like istanbul
32+
coverage
33+
34+
# nyc test coverage
35+
.nyc_output
36+
37+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
38+
.grunt
39+
40+
# Bower dependency directory (https://bower.io/)
41+
bower_components
42+
43+
# node-waf configuration
44+
.lock-wscript
45+
46+
# Compiled binary addons (http://nodejs.org/api/addons.html)
47+
build/Release
48+
49+
# Dependency directories
50+
node_modules/
51+
52+
# Optional npm cache directory
53+
.npm
54+
55+
# Optional eslint cache
56+
.eslintcache
57+
58+
# Optional REPL history
59+
.node_repl_history
60+
61+
# Output of 'npm pack'
62+
*.tgz
63+
64+
# Yarn Integrity file
65+
.yarn-integrity
66+
67+
# dotenv environment variables file
68+
.env

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ __"The devil is in the detail"__
2323
Implementation details, the handling of edge cases, and your coding style are three of the major things that we value. We'd also love to see automated tests as part of your solution. Please pay special attention to:
2424
2525
- Logic and code complexity - How easy will my code be for it to be maintained by someone else? Am I using good practices and proper design patterns?
26-
2726
- Test coverage - Is my code tested? Are all scenarios considered?
28-
2927
- Requirement coverage - Is the application doing what it is meant to be doing?
3028

3129
#### Bonus points

firebase.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}
16+
}

0 commit comments

Comments
 (0)