antcalatayud / ReactCoin (public) (License: GPLv3) (since 2018-04-24) (hash sha1)
As seen on this course: https://udilia.com/courses/learn-react-by-building-a-web-app
List of commits:
Subject Hash Author Date (UTC)
Add init files d81df9e3d230bcb49f0bb31c43cffad97532d321 antcalatayud 2018-04-24 09:51:04
Initial commit 3c3626d89f221374c92ee04aed1eaa8616f3977e Antonio Calatayud 2018-04-24 09:03:03
Commit d81df9e3d230bcb49f0bb31c43cffad97532d321 - Add init files
Author: antcalatayud
Author date (UTC): 2018-04-24 09:51
Committer name: antcalatayud
Committer date (UTC): 2018-04-24 09:51
Parent(s): 3c3626d89f221374c92ee04aed1eaa8616f3977e
Signing key:
Tree: 7f643d685a0bfd61e1b40f146163e9275b6927c6
File Lines added Lines deleted
.gitignore 21 0
README.md 11 0
package-lock.json 13096 0
package.json 20 0
public/index.html 12 0
src/components/common/logo.png 0 0
src/components/common/search.png 0 0
src/index.js 0 0
File .gitignore added (mode: 100644) (index 0000000..d30f40e)
1 # See https://help.github.com/ignore-files/ for more about ignoring files.
2
3 # dependencies
4 /node_modules
5
6 # testing
7 /coverage
8
9 # production
10 /build
11
12 # misc
13 .DS_Store
14 .env.local
15 .env.development.local
16 .env.test.local
17 .env.production.local
18
19 npm-debug.log*
20 yarn-debug.log*
21 yarn-error.log*
File README.md added (mode: 100644) (index 0000000..e779541)
1 ### Install dependencies
2
3 ```
4 npm install
5 ```
6
7 ### Start development server
8
9 ```
10 npm start
11 ```
The diff for file package-lock.json is too big (13096 changes) and cannot be shown.
File package.json added (mode: 100644) (index 0000000..895d502)
1 {
2 "name": "react-coin",
3 "version": "1.0.0",
4 "private": true,
5 "devDependencies": {
6 "react-scripts": "1.1.0"
7 },
8 "dependencies": {
9 "prop-types": "^15.6.0",
10 "react": "^16.2.0",
11 "react-dom": "^16.2.0",
12 "react-router-dom": "^4.2.2"
13 },
14 "scripts": {
15 "start": "react-scripts start",
16 "build": "react-scripts build",
17 "test": "react-scripts test --env=jsdom",
18 "eject": "react-scripts eject"
19 }
20 }
File public/index.html added (mode: 100644) (index 0000000..464a266)
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6 <title>React Coin</title>
7 </head>
8 <body>
9 <!-- this is where our React app will render -->
10 <div id="root"></div>
11 </body>
12 </html>
File src/components/common/logo.png added (mode: 100644) (index 0000000..26093c9)
File src/components/common/search.png added (mode: 100644) (index 0000000..8511b2f)
File src/index.js added (mode: 100644) (index 0000000..e69de29)
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/antcalatayud/ReactCoin

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/antcalatayud/ReactCoin

Clone this repository using git:
git clone git://git.rocketgit.com/user/antcalatayud/ReactCoin

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main