Skip to content

Commit 6200254

Browse files
committed
initial commit
0 parents  commit 6200254

File tree

15 files changed

+16714
-0
lines changed

15 files changed

+16714
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
.idea
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10.14.1

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2019 Code Hangar, Inc.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# React Developer Application
2+
3+
Hello there! This is Code Hangar's React Developer application. If you are interested in working with us, follow the directions below!
4+
5+
## What to Do
6+
7+
1. Clone and run this project locally on your device.
8+
2. Use the rendered interface to unlock your next steps.
9+
10+
Have fun!
11+
12+
---
13+
14+
*This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).*
15+
16+
### Get it running on your machine
17+
18+
Open a terminal in the project directory, and run:
19+
20+
#### 1. `npm i`
21+
22+
This will install the necessary project dependencies to run the app on your machine
23+
24+
#### 2. `npm start`
25+
26+
Runs the app in the development mode.<br>
27+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
28+
29+
The page will reload if you make edits.<br>
30+
You will also see any lint errors in the console.
31+
32+
### Testing
33+
34+
#### `npm test`
35+
36+
Launches the test runner in the interactive watch mode.<br>
37+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
38+
39+
### Building
40+
41+
#### `npm run build`
42+
43+
Builds the app for production to the `build` folder.<br>
44+
It correctly bundles React in production mode and optimizes the build for the best performance.
45+
46+
The build is minified and the filenames include the hashes.<br>
47+
Your app is ready to be deployed!
48+
49+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

0 commit comments

Comments
 (0)