Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve docs #22

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}

- name: Update kubeconfig
#if: github.ref == 'refs/heads/main' && github.event_name == 'push'
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: aws eks update-kubeconfig --name ${{ vars.AWS_EKS_CLUSTER_NAME }} --region ${{ vars.AWS_REGION }}

- name: Deploy to EKS
#if: github.ref == 'refs/heads/main' && github.event_name == 'push'
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: kubectl apply -f .
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
aws-region: ${{ vars.AWS_REGION }}

- name: Sync S3 bucket
#if: github.ref == 'refs/heads/main' && github.event_name == 'push'
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: aws s3 sync ./site/ s3://${{ vars.AWS_S3_BUCKET_NAME }} --delete
2 changes: 1 addition & 1 deletion .github/workflows/provision.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ jobs:
run: exit 1

- name: Terraform Apply
#if: github.ref == 'refs/heads/main' && github.event_name == 'push'
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: terraform apply -auto-approve -input=false
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,17 @@

Nosso MVP é uma versão simplificada para fins de demonstração dos requisitos atendidos durante o Hackathon. Compreende um monolito com um banco de dados relacional e uso de serviços serverless na AWS. Toda a infraestrutura descrita em Terraform e a imagem da aplicação são automatizados em nossas pipelines com GitHub Actions, que inclui verificação dos testes e análise estática no SonarCloud.

O MVP inclui:

- documentação abrangente, incluindo de DDD, diagramas C4, etc
- 15 ADRs cobrindo requisitos não funcionais
- pipelines para IaC com Terraform e deploy no Kubernetes
- testes unitários e de integração com Cucumber
- análise estática para qualidade e segurança
- uso de EKS, RDS, S3, VPC, Cognito, ECR, KMS, SSM, etc.
- estimativa de volumetria
- setup para execução local (Docker Compose, Makefile, etc.)

Projeto no SonarCloud: [https://sonarcloud.io/project/overview?id=FIAP-3SOAT-G15_healthmed-app](https://sonarcloud.io/project/overview?id=FIAP-3SOAT-G15_healthmed-app)

Também criamos uma extensa documentação para suportar uma aplicação escalável e resiliente que atenda a todos os requisitos não funcionais.
Expand Down Expand Up @@ -93,7 +104,7 @@ Architectural Decision Records (ADRs):

### Schema do BD do MVP

[![Schema do BD do MVP](diagrams/db-schema.png)](docs/diagrams/db-schema.png)
[![Schema do BD do MVP](docs/diagrams/db-schema.png)](docs/diagrams/db-schema.png)

## CI/CD

Expand Down
11 changes: 11 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@

Nosso MVP é uma versão simplificada para fins de demonstração dos requisitos atendidos durante o Hackathon. Compreende um monolito com um banco de dados relacional e uso de serviços serverless na AWS. Toda a infraestrutura descrita em Terraform e a imagem da aplicação são automatizados em nossas pipelines com GitHub Actions, que inclui verificação dos testes e análise estática no SonarCloud.

O MVP inclui:

- documentação abrangente, incluindo de DDD, diagramas C4, etc
- 15 ADRs cobrindo requisitos não funcionais
- pipelines para IaC com Terraform e deploy no Kubernetes
- testes unitários e de integração com Cucumber
- análise estática para qualidade e segurança
- uso de EKS, RDS, S3, VPC, Cognito, ECR, KMS, SSM, etc.
- estimativa de volumetria
- setup para execução local (Docker Compose, Makefile, etc.)

Projeto no SonarCloud: [https://sonarcloud.io/project/overview?id=FIAP-3SOAT-G15_healthmed-app](https://sonarcloud.io/project/overview?id=FIAP-3SOAT-G15_healthmed-app)

Também criamos uma extensa documentação para suportar uma aplicação escalável e resiliente que atenda a todos os requisitos não funcionais.
Expand Down
Loading