Skip to content

Commit f1bc332

Browse files
committed
initial commit
0 parents  commit f1bc332

21 files changed

+16515
-0
lines changed

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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*
22+
23+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
24+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
25+
26+
# User-specific stuff:
27+
.idea/*
28+
.idea/**/workspace.xml
29+
.idea/**/tasks.xml
30+
.idea/dictionaries
31+
32+
# Sensitive or high-churn files:
33+
.idea/**/dataSources/
34+
.idea/**/dataSources.ids
35+
.idea/**/dataSources.xml
36+
.idea/**/dataSources.local.xml
37+
.idea/**/sqlDataSources.xml
38+
.idea/**/dynamic.xml
39+
.idea/**/uiDesigner.xml

README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# PRÁTICO
2+
3+
#### Setup
4+
In the project directory, run:
5+
```shell
6+
npm install
7+
```
8+
9+
To run the app, execute the following script:
10+
```shell
11+
npm start
12+
```
13+
14+
You can check it running on [http://localhost:3000](http://localhost:3000)
15+
16+
The page will reload if you make changes.
17+
18+
You will also see any lint errors in the console.
19+
20+
#### Tests
21+
You can run the tests with:
22+
```shell
23+
npm test
24+
```
25+
26+
#### Build
27+
You can build the project for production with:
28+
```shell
29+
npm run build
30+
```
31+
32+
The build is minified and the filenames include the hashes.

0 commit comments

Comments
 (0)