You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
3
+
An alternative take on how github status page should look!
4
4
5
-
## Available Scripts
5
+
Based on the app-ideas repository: https://github.com/florinpop17/app-ideas/blob/master/Projects/1-Beginner/GitHub-Status-App.md
6
+
7
+
## Development
8
+
9
+
Start up the docker development container:
10
+
11
+
```
12
+
./run-docker-development.sh
13
+
```
14
+
15
+
Then you can run any of the scripts below.
16
+
17
+
### Available Scripts
6
18
7
19
In the project directory, you can run:
8
20
9
-
### `yarn start`
21
+
####`yarn start`
10
22
11
23
Runs the app in the development mode.\
12
24
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13
25
14
26
The page will reload if you make edits.\
15
27
You will also see any lint errors in the console.
16
28
17
-
### `yarn test`
18
-
19
-
Launches the test runner in the interactive watch mode.\
20
-
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21
-
22
-
### `yarn build`
29
+
#### `yarn build`
23
30
24
31
Builds the app for production to the `build` folder.\
25
32
It correctly bundles React in production mode and optimizes the build for the best performance.
@@ -29,18 +36,26 @@ Your app is ready to be deployed!
29
36
30
37
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31
38
32
-
### `yarn eject`
33
-
34
-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
39
+
#### `yarn lint` / `yarn lint:fix`
35
40
36
-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
41
+
Runs eslint to check for strict typescript lint errors.\
42
+
Run `yarn lint:fix` to attempt to fix any issues.
37
43
38
-
Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
44
+
#### `yarn ts` / `yarn ts-watch`
39
45
40
-
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
46
+
Runs the typescript compiler (in watch mode with the latter command).\
47
+
Running the development server also compiles typescript.
41
48
42
49
## Learn More
43
50
44
51
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45
52
46
53
To learn React, check out the [React documentation](https://reactjs.org/).
54
+
55
+
## Super Linter
56
+
57
+
For all other linters, run the super lint docker container to check for errors:
0 commit comments