├── .github └── workflows │ └── main.yml ├── .gitignore ├── .husky └── commit-msg ├── .vscode └── settings.json ├── README.md ├── apresentacao ├── export │ ├── index.html │ └── libs │ │ ├── highlight.js │ │ └── 11.3.1 │ │ │ └── styles │ │ │ └── monokai.min.css │ │ ├── reveal.js │ │ └── 4.1.3 │ │ │ ├── plugin │ │ │ ├── animate │ │ │ │ ├── plugin.js │ │ │ │ └── svg.min.js │ │ │ ├── anything │ │ │ │ ├── Chart.min.js │ │ │ │ ├── d3.patch.js │ │ │ │ ├── d3 │ │ │ │ │ ├── d3.v3.min.js │ │ │ │ │ ├── queue.v1.min.js │ │ │ │ │ └── topojson.v1.min.js │ │ │ │ ├── function-plot.js │ │ │ │ └── plugin.js │ │ │ ├── chalkboard │ │ │ │ └── style.css │ │ │ ├── chart │ │ │ │ ├── chart.min.js │ │ │ │ └── plugin.js │ │ │ ├── customcontrols │ │ │ │ └── plugin.js │ │ │ ├── embed-tweet │ │ │ │ └── plugin.js │ │ │ ├── fullscreen │ │ │ │ └── plugin.js │ │ │ ├── highlight │ │ │ │ └── highlight.js │ │ │ ├── markdown │ │ │ │ └── markdown.js │ │ │ ├── math │ │ │ │ └── math.js │ │ │ ├── notes │ │ │ │ └── notes.js │ │ │ └── zoom │ │ │ │ └── zoom.js │ │ │ ├── reset.css │ │ │ ├── reveal.css │ │ │ ├── reveal.js │ │ │ └── theme │ │ │ └── night.css │ │ └── styles │ │ └── tasklist.css └── slides.md ├── backend ├── .eslintrc.json ├── Dockerfile ├── database │ ├── connection.js │ └── mysql-seeder │ │ └── languages.sql ├── index.js ├── package-lock.json └── package.json ├── commitlint.config.js ├── docker-compose.yml ├── frontend ├── .gitignore ├── Dockerfile ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ ├── setupTests.js │ └── utils │ └── api.js └── package.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/README.md -------------------------------------------------------------------------------- /apresentacao/export/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/index.html -------------------------------------------------------------------------------- /apresentacao/export/libs/highlight.js/11.3.1/styles/monokai.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/highlight.js/11.3.1/styles/monokai.min.css -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/animate/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/animate/plugin.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/animate/svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/animate/svg.min.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/Chart.min.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3.patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3.patch.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3/d3.v3.min.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3/queue.v1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3/queue.v1.min.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3/topojson.v1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/d3/topojson.v1.min.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/function-plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/function-plot.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/anything/plugin.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/chalkboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/chalkboard/style.css -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/chart/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/chart/chart.min.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/chart/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/chart/plugin.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/customcontrols/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/customcontrols/plugin.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/embed-tweet/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/embed-tweet/plugin.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/fullscreen/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/fullscreen/plugin.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/math/math.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/notes/notes.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/plugin/zoom/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/plugin/zoom/zoom.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/reset.css -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/reveal.css -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/reveal.js -------------------------------------------------------------------------------- /apresentacao/export/libs/reveal.js/4.1.3/theme/night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/reveal.js/4.1.3/theme/night.css -------------------------------------------------------------------------------- /apresentacao/export/libs/styles/tasklist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/export/libs/styles/tasklist.css -------------------------------------------------------------------------------- /apresentacao/slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/apresentacao/slides.md -------------------------------------------------------------------------------- /backend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/backend/.eslintrc.json -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/database/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/backend/database/connection.js -------------------------------------------------------------------------------- /backend/database/mysql-seeder/languages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/backend/database/mysql-seeder/languages.sql -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/backend/package.json -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/App.test.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/setupTests.js -------------------------------------------------------------------------------- /frontend/src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/frontend/src/utils/api.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Thiago-Mariotto/project-config-base/HEAD/package.json --------------------------------------------------------------------------------