├── .DS_Store ├── .devcontainer └── devcontainer.json ├── .github └── workflows │ ├── 0-start-exercise.yml │ ├── 1-step.yml │ ├── 2-step.yml │ ├── 3-step.yml │ └── 4-step.yml ├── .gitignore ├── .vscode ├── launch.json └── mcp.json ├── LICENSE ├── README.md ├── requirements.txt ├── slides ├── MCP.pdf ├── VSCode_GitHubCopilot-pt-BR.pdf └── VSCode_GitHubCopilot.pdf ├── src ├── README.md ├── app.py └── static │ ├── accessibility.js │ ├── app.js │ ├── index.html │ └── styles.css └── workshop ├── README.md └── steps ├── 1-step-br.md ├── 1-step-issues ├── bug │ └── school-pride.md └── enhancement │ ├── activities-file.md │ ├── add-filters.md │ ├── admin-mode.md │ ├── missing-activity.md │ └── prettier-interface.md ├── 2-step-br.md ├── 3-step-br.md ├── 4-step-br.md └── x-review-br.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.DS_Store -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/0-start-exercise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.github/workflows/0-start-exercise.yml -------------------------------------------------------------------------------- /.github/workflows/1-step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.github/workflows/1-step.yml -------------------------------------------------------------------------------- /.github/workflows/2-step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.github/workflows/2-step.yml -------------------------------------------------------------------------------- /.github/workflows/3-step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.github/workflows/3-step.yml -------------------------------------------------------------------------------- /.github/workflows/4-step.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.github/workflows/4-step.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/.vscode/mcp.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi 2 | uvicorn 3 | -------------------------------------------------------------------------------- /slides/MCP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/slides/MCP.pdf -------------------------------------------------------------------------------- /slides/VSCode_GitHubCopilot-pt-BR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/slides/VSCode_GitHubCopilot-pt-BR.pdf -------------------------------------------------------------------------------- /slides/VSCode_GitHubCopilot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/slides/VSCode_GitHubCopilot.pdf -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/src/README.md -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/src/app.py -------------------------------------------------------------------------------- /src/static/accessibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/src/static/accessibility.js -------------------------------------------------------------------------------- /src/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/src/static/app.js -------------------------------------------------------------------------------- /src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/src/static/index.html -------------------------------------------------------------------------------- /src/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/src/static/styles.css -------------------------------------------------------------------------------- /workshop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/README.md -------------------------------------------------------------------------------- /workshop/steps/1-step-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/1-step-br.md -------------------------------------------------------------------------------- /workshop/steps/1-step-issues/bug/school-pride.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/1-step-issues/bug/school-pride.md -------------------------------------------------------------------------------- /workshop/steps/1-step-issues/enhancement/activities-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/1-step-issues/enhancement/activities-file.md -------------------------------------------------------------------------------- /workshop/steps/1-step-issues/enhancement/add-filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/1-step-issues/enhancement/add-filters.md -------------------------------------------------------------------------------- /workshop/steps/1-step-issues/enhancement/admin-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/1-step-issues/enhancement/admin-mode.md -------------------------------------------------------------------------------- /workshop/steps/1-step-issues/enhancement/missing-activity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/1-step-issues/enhancement/missing-activity.md -------------------------------------------------------------------------------- /workshop/steps/1-step-issues/enhancement/prettier-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/1-step-issues/enhancement/prettier-interface.md -------------------------------------------------------------------------------- /workshop/steps/2-step-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/2-step-br.md -------------------------------------------------------------------------------- /workshop/steps/3-step-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/3-step-br.md -------------------------------------------------------------------------------- /workshop/steps/4-step-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/4-step-br.md -------------------------------------------------------------------------------- /workshop/steps/x-review-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyzcodingstuff/vs-code-dev-days/HEAD/workshop/steps/x-review-br.md --------------------------------------------------------------------------------