Skip to content

Commit

Permalink
Rebrand Project (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
Salgado2004 authored Jul 5, 2024
2 parents 6a970ba + 5c4ff89 commit 2811214
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 88 deletions.
59 changes: 0 additions & 59 deletions .github/workflows/master_certcloud.yml

This file was deleted.

6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
> See also: [Portuguese 🇧🇷](/translations/CONTRIBUTING_PT.md)
# Contribuiting
> The easiest way to contribute is by [opening an issue](https://github.com/Salgado2004/CertCloud-Exams/issues/new/choose). No contribution is too small - we encourage you to report any typos/bugs, unclear questions or feature requests.
> The easiest way to contribute is by [opening an issue](https://github.com/Salgado2004/NuvemPro-Exams/issues/new/choose). No contribution is too small - we encourage you to report any typos/bugs, unclear questions or feature requests.
- [Setting up the project](#setting-up-the-project)
- [Local setup](#local-setup)
Expand All @@ -16,7 +16,7 @@

### Local setup

- [Fork](https://github.com/Salgado2004/CertCloud-Exams/fork) the repository
- [Fork](https://github.com/Salgado2004/NuvemPro-Exams/fork) the repository
- Install the project dependencies `npm install`
- Install angular cli `npm install -g @angular/cli`
- In the project root, run the Angular project `ng serve --open`
Expand All @@ -26,7 +26,7 @@

### Adding new question

The questions are stored in the [content/](https://github.com/Salgado2004/CertCloud-Exams/tree/master/content) folder of the repo in JSON format.
The questions are stored in the [content/](https://github.com/Salgado2004/NuvemPro-Exams/tree/master/content) folder of the repo in JSON format.

Each exam has its own questions.json file. To add a new question, go to the exam file and create a new JSON object in the end of the array, following the format:

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
> See also: [Portuguese 🇧🇷](/translations/README_PT.md)
# CertCloud Exams
# NuvemPro Exams
A project to assist in the study and achievement of certifications from popular cloud platforms (Azure, AWS, GCP), providing practice exams.

## Technologies used
Expand All @@ -10,8 +10,8 @@ This project was developed with:
- _[Node](https://nodejs.org/en) versão 20.11.0_

## Contributors
<a href="https://github.com/Salgado2004/CertCloud-Exams/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Salgado2004/CertCloud-Exams" />
<a href="https://github.com/Salgado2004/NuvemPro-Exams/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Salgado2004/NuvemPro-Exams" />
</a>

Made with [contrib.rocks](https://contrib.rocks).
9 changes: 5 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"simuladosAzure": {
"nuvemProExams": {
"projectType": "application",
"schematics": {},
"root": "",
Expand All @@ -27,6 +27,7 @@
],
"styles": [
"@angular/material/prebuilt-themes/indigo-pink.css",
"node_modules/swiper/swiper-bundle.min.css",
"src/styles.css"
],
"scripts": []
Expand Down Expand Up @@ -71,18 +72,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "simuladosAzure:build:production"
"buildTarget": "nuvemProExams:build:production"
},
"development": {
"buildTarget": "simuladosAzure:build:development"
"buildTarget": "nuvemProExams:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "simuladosAzure:build"
"buildTarget": "nuvemProExams:build"
}
},
"test": {
Expand Down
6 changes: 3 additions & 3 deletions src/app/app.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ describe('AppComponent', () => {
expect(app).toBeTruthy();
});

it(`should have the 'simuladosAzure' title`, () => {
it(`should have the 'nuvempro exams' title`, () => {
const fixture = TestBed.createComponent(AppComponent);
const app = fixture.componentInstance;
expect(app.title).toEqual('simuladosAzure');
expect(app.title).toEqual('nuvempro exams');
});

it('should render title', () => {
const fixture = TestBed.createComponent(AppComponent);
fixture.detectChanges();
const compiled = fixture.nativeElement as HTMLElement;
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, simuladosAzure');
expect(compiled.querySelector('h1')?.textContent).toContain('Hello, nuvemProExams');
});
});
2 changes: 1 addition & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ import { RouterOutlet } from '@angular/router';
styleUrl: './app.component.css'
})
export class AppComponent {
title = 'simuladosAzure';
title = 'nuvempro exams';
}
2 changes: 1 addition & 1 deletion src/app/shared/components/header/header.component.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<h1>CertCloud Exams</h1>
<h1>NuvemPro Exams</h1>
4 changes: 2 additions & 2 deletions src/app/shared/components/sidenav/sidenav.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</div>
<div class="contribute hide">
<h5>Contribua para o projeto:</h5>
<a href="https://github.com/Salgado2004/CertCloud-Exams" target="_blank">
<a href="https://github.com/Salgado2004/NuvemPro-Exams" target="_blank">
<img src="/assets/icons/github.svg">GitHub</a>
<a href="https://github.com/Salgado2004/CertCloud-Exams/discussions" target="_blank">
<a href="https://github.com/Salgado2004/NuvemPro-Exams/discussions" target="_blank">
<img src="/assets/icons/comments-solid.svg">Discussões</a>
</div>
4 changes: 2 additions & 2 deletions src/app/shared/pages/home/home.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ section p a:hover{
.swiper {
margin-left: 12px;
width: 75%;
border: 1px solid #83878b9c;
box-shadow: 2px 2px 5px #2f3643;
border: 8px solid #fff;
box-shadow: 1px 1px 5px #2f3643;
}

.swiper-slide {
Expand Down
4 changes: 2 additions & 2 deletions src/app/shared/pages/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<app-sidenav></app-sidenav>
<section>
<h1>Estude para certificações de Cloud</h1>
<p>O CertCloud Exams é um projeto open-source que visa ajudar estudantes a se prepararem para certificações de Cloud Computing de diversas plataformas.</p>
<p>O NuvemPro Exams é um projeto open-source que visa ajudar estudantes a se prepararem para certificações de Cloud Computing de diversas plataformas.</p>
<h2>Exames práticos</h2>
<p>Os <a routerLink="/simulados">exames práticos</a> são simulados que possuem questões de diferentes formatos para você testar seus conhecimentos.</p>
<div class="swiper mySwiper">
Expand All @@ -17,6 +17,6 @@ <h2>Exames práticos</h2>
</div>
</div>
<h2>Contribua para o projeto</h2>
<p>Se você deseja contribuir para o projeto, acesse nosso <a href="https://github.com/Salgado2004/CertCloud-Exams" target="_blank">repositório no GitHub</a> e crie novos issues ou participe das discussões.</p>
<p>Se você deseja contribuir para o projeto, acesse nosso <a href="https://github.com/Salgado2004/NuvemPro-Exams" target="_blank">repositório no GitHub</a> e crie novos issues ou participe das discussões.</p>
</section>
</main>
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const environment = {
production: false,
endpoint: 'https://raw.githubusercontent.com/Salgado2004/CertCloud-Exams/master/content/'
endpoint: 'https://raw.githubusercontent.com/Salgado2004/NuvemPro-Exams/master/content/'
};
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>SimuladosAzure</title>
<title>NuvemPro Exams</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
Expand Down
6 changes: 3 additions & 3 deletions translations/CONTRIBUTING_PT.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Contribuindo
> O jeito mais fácil de contribuir é [criando uma issue](https://github.com/Salgado2004/CertCloud-Exams/issues/new/choose). Nenhuma contribuição é pequena demais - Incentivamos você a reportar erros ou bugs, questões incorretas, solicitar melhorias, etc.
> O jeito mais fácil de contribuir é [criando uma issue](https://github.com/Salgado2004/NuvemPro-Exams/issues/new/choose). Nenhuma contribuição é pequena demais - Incentivamos você a reportar erros ou bugs, questões incorretas, solicitar melhorias, etc.
- [Configurando o projeto](#configurando-o-projeto)
- [Configuração local](#configuração-local)
Expand All @@ -14,7 +14,7 @@

### Configuração local

- Faça um [fork](https://github.com/Salgado2004/CertCloud-Exams/fork) do repositório
- Faça um [fork](https://github.com/Salgado2004/NuvemPro-Exams/fork) do repositório
- Instale as dependências do projeto `npm install`
- Instale o angular cli `npm install -g @angular/cli`
- Na raiz do projeto, execute o comando `ng serve --open` para rodar a aplicação
Expand All @@ -24,7 +24,7 @@

### Adicionando uma nova questão

As questões ficam armazenadas nesse repositório, na pasta [content/](https://github.com/Salgado2004/CertCloud-Exams/tree/master/content), no formato JSON.
As questões ficam armazenadas nesse repositório, na pasta [content/](https://github.com/Salgado2004/NuvemPro-Exams/tree/master/content), no formato JSON.

Cada exame tem seu próprio arquivo questions.json. Para adicionar uma nova questão, vá até o arquivo do exame e crie um novo objeto JSON no final do array, respeitando o formato a seguir:

Expand Down
6 changes: 3 additions & 3 deletions translations/README_PT.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# CertCloud Exams
# NuvemPro Exams
Um projeto para auxiliar no estudo e conquista de certificações das principais plataformas de nuvem (Azure, AWS, GCP), disponibilizando simulados das provas.

## Tecnologias utilizadas
Expand All @@ -8,8 +8,8 @@ Esse projeto foi desenvolvido com:
- _[Node](https://nodejs.org/en) versão 20.11.0_

## Contribuidores
<a href="https://github.com/Salgado2004/CertCloud-Exams/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Salgado2004/CertCloud-Exams" />
<a href="https://github.com/Salgado2004/NuvemPro-Exams/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Salgado2004/NuvemPro-Exams" />
</a>

Made with [contrib.rocks](https://contrib.rocks).

0 comments on commit 2811214

Please sign in to comment.