├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .env.example ├── .gitignore ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── app.py ├── app ├── __init__.py ├── api │ ├── __init__.py │ └── api.py ├── main.py ├── models │ └── __init__.py ├── services │ ├── __init__.py │ ├── github_client.py │ └── prompts.py ├── static │ └── style.css └── templates │ └── index.html ├── requirements.txt ├── test_setup.py └── tutorial ├── 01-step.md ├── 02-step.md ├── 03-step.md ├── 04-step.md ├── 05-step.md ├── 06-step.md ├── 07-step.md ├── 08-step.md ├── 09-step.md ├── README.md ├── images ├── 1-app-preview.png ├── 1-create-codespace.png ├── 1-fork-configuration.png ├── 1-ports-tab.png ├── 1-start-debug.png ├── 2-edit-mode.png ├── 6-chat-mode-dropdown.png ├── 6-configure-chat-instructions.png ├── 6-copy-raw.png ├── 7-code-review.png ├── 7-generate-commit-message.png ├── 7-stage-changes.png └── test.md └── translations ├── es ├── 01-step.md ├── 02-step.md ├── 03-step.md ├── 04-step.md ├── 05-step.md ├── 06-step.md ├── 07-step.md ├── 08-step.md ├── 09-step.md └── README.md └── pt-br ├── 01-step.md ├── 02-step.md ├── 03-step.md ├── 04-step.md ├── 05-step.md ├── 06-step.md ├── 07-step.md ├── 08-step.md ├── 09-step.md └── README.md /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | # Copie para .env e preencha o token clássico do GitHub (escopo read:user) 2 | GITHUB_TOKEN= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | StudyPlan AI - Aplicação principal 3 | """ 4 | -------------------------------------------------------------------------------- /app/api/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | API do StudyPlan AI 3 | """ 4 | -------------------------------------------------------------------------------- /app/api/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app/api/api.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app/main.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app/models/__init__.py -------------------------------------------------------------------------------- /app/services/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Serviços do StudyPlan AI 3 | """ 4 | -------------------------------------------------------------------------------- /app/services/github_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app/services/github_client.py -------------------------------------------------------------------------------- /app/services/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app/services/prompts.py -------------------------------------------------------------------------------- /app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app/static/style.css -------------------------------------------------------------------------------- /app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/app/templates/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/test_setup.py -------------------------------------------------------------------------------- /tutorial/01-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/01-step.md -------------------------------------------------------------------------------- /tutorial/02-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/02-step.md -------------------------------------------------------------------------------- /tutorial/03-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/03-step.md -------------------------------------------------------------------------------- /tutorial/04-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/04-step.md -------------------------------------------------------------------------------- /tutorial/05-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/05-step.md -------------------------------------------------------------------------------- /tutorial/06-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/06-step.md -------------------------------------------------------------------------------- /tutorial/07-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/07-step.md -------------------------------------------------------------------------------- /tutorial/08-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/08-step.md -------------------------------------------------------------------------------- /tutorial/09-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/09-step.md -------------------------------------------------------------------------------- /tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/README.md -------------------------------------------------------------------------------- /tutorial/images/1-app-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/1-app-preview.png -------------------------------------------------------------------------------- /tutorial/images/1-create-codespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/1-create-codespace.png -------------------------------------------------------------------------------- /tutorial/images/1-fork-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/1-fork-configuration.png -------------------------------------------------------------------------------- /tutorial/images/1-ports-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/1-ports-tab.png -------------------------------------------------------------------------------- /tutorial/images/1-start-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/1-start-debug.png -------------------------------------------------------------------------------- /tutorial/images/2-edit-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/2-edit-mode.png -------------------------------------------------------------------------------- /tutorial/images/6-chat-mode-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/6-chat-mode-dropdown.png -------------------------------------------------------------------------------- /tutorial/images/6-configure-chat-instructions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/6-configure-chat-instructions.png -------------------------------------------------------------------------------- /tutorial/images/6-copy-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/6-copy-raw.png -------------------------------------------------------------------------------- /tutorial/images/7-code-review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/7-code-review.png -------------------------------------------------------------------------------- /tutorial/images/7-generate-commit-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/7-generate-commit-message.png -------------------------------------------------------------------------------- /tutorial/images/7-stage-changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/images/7-stage-changes.png -------------------------------------------------------------------------------- /tutorial/images/test.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tutorial/translations/es/01-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/01-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/02-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/02-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/03-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/03-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/04-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/04-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/05-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/05-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/06-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/06-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/07-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/07-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/08-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/08-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/09-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/09-step.md -------------------------------------------------------------------------------- /tutorial/translations/es/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/es/README.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/01-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/01-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/02-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/02-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/03-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/03-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/04-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/04-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/05-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/05-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/06-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/06-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/07-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/07-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/08-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/08-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/09-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/09-step.md -------------------------------------------------------------------------------- /tutorial/translations/pt-br/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/lab-study-app/HEAD/tutorial/translations/pt-br/README.md --------------------------------------------------------------------------------