Skip to content

Commit 58daef4

Browse files
authored
Merge pull request #520 from Thoth2023/diegocomis-patch-4
Update README.md
2 parents a3c75f8 + 6803ddc commit 58daef4

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

README.md

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,121 +1,121 @@
11

2-
# Thoth 2.0
2+
# Thoth 2.0
33
[![Latest Stable Version](https://badgen.net/packagist/lang/monolog/monolog)](https://badgen.net/packagist/lang/monolog/monolog)
44
[![PHP Version Require](https://badgen.net/badge/php/%3E8.1/green)](https://badgen.net/badge/php/%3E8.1/green)
55

6-
Ferramenta de Revisão Sistemática da Literatura
6+
Systematic Literature Review Tool
77

8-
## Tecnologias e Ferramentas
8+
## Technologies and Tools
99
<img src="https://camo.githubusercontent.com/85b8858163097e34c31ef8eeda533e1fa18be0ec8ce58f494b6b5cedc2f27196/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c61726176656c2d2532334646324432302e7376673f7374796c653d666f722d7468652d6261646765266c6f676f3d6c61726176656c266c6f676f436f6c6f723d7768697465" /><img src="https://img.shields.io/badge/PHP-777BB4?style=for-the-badge&logo=php&logoColor=white" /><img src="https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white" /><img src="https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E" /><img src="https://img.shields.io/badge/json-5E5C5C?style=for-the-badge&logo=json&logoColor=white" /><img src="https://img.shields.io/badge/Vue.js-35495E?style=for-the-badge&logo=vuedotjs&logoColor=4FC08D" /><img src="https://img.shields.io/badge/Docker-2CA5E0?style=for-the-badge&logo=docker&logoColor=white" /><img src="https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge&logo=bootstrap&logoColor=white" /><img src="https://img.shields.io/badge/Git-F05032?style=for-the-badge&logo=git&logoColor=white" /><img src="https://img.shields.io/badge/Chart.js-FF6384?style=for-the-badge&logo=chartdotjs&logoColor=white" /><img src="https://img.shields.io/badge/Webpack-8DD6F9?style=for-the-badge&logo=Webpack&logoColor=white" />
1010

11-
### Entendendo a Estrutura do framework
11+
### Understanding the Framework Structure
1212
1. Laravel DOC - https://laravel.com/docs/10.x
13-
2. Entendendo a estrutura - https://www.youtube.com/watch?v=zN0gAqOcxsk
13+
2. Understanding the structure - https://www.youtube.com/watch?v=zN0gAqOcxsk
1414

15-
### Template Bootstrap Sugerido
16-
Informações de como usar os elementos do template
15+
### Suggested Bootstrap Template
16+
Information on how to use the template elements
1717
https://argon-dashboard-laravel.creative-tim.com/docs/bootstrap/overview/argon-dashboard/
1818

19+
## Step-by-Step Initial Setup
1920

20-
## Passo a passo para Configuração inicial
21-
22-
-Ter o Docker Desktop instalado:
21+
- Have Docker Desktop installed:
2322
https://www.docker.com/products/docker-desktop/
2423

25-
- Na sua IDE de desenvolvimento (PHP Storm, VSCode ou outra de sua preferência)
24+
- In your development IDE (PHP Storm, VSCode, or another of your preference)
2625

27-
Clone Repositório
26+
Clone the Repository
2827
```sh
2928
git clone -b https://github.com/Thoth2023/thoth-remake.git
3029
```
31-
Crie o Arquivo .env
30+
Create the .env File
3231
```sh
3332
cp .env.example .env
3433
```
35-
Suba os containers do projeto
34+
Start the Project Containers
3635
```sh
3736
docker-compose up -d
3837
```
39-
Acesse o container app
38+
Access the App Container
4039
```sh
4140
docker-compose exec app bash
4241
```
43-
Instale as dependências do projeto
42+
Install Project Dependencies
4443
```sh
4544
composer install
4645
```
47-
Se der algum erro na instalação das dependências
46+
If there are any errors during dependency installation
4847
```sh
4948
composer update
5049
```
5150

52-
Gere a key do projeto Laravel
51+
Generate the Laravel Project Key
5352
```sh
5453
php artisan key:generate
5554
```
5655

57-
Para popular o Banco de Dados
56+
To Populate the Database
5857
```sh
5958
php artisan migrate --seed
6059
```
6160
```sh
62-
Para desenvolvimento, crie uma nova branche a partir de "Develop"
61+
For development, create a new branch from "Develop"
6362
```
6463

65-
## Acesse o projeto
64+
## Access the Project
6665
[http://localhost:8989](http://localhost:8989)
6766

6867

6968

70-
## Atalhos com Make
69+
## Make Shortcuts
7170
```bash
72-
#Iniciar o Docker em segundo plano
71+
# Start Docker in the Background
7372
up:
7473
docker-compose up -d
7574

76-
# Desliga os containers
75+
# Shut Down the Containers
7776
down:
7877
docker-compose down
7978

80-
# Reinicia os containers
79+
# Restart the Containers
8180
restart:
8281
docker-compose restart
8382

84-
# Mostra logs
83+
# Show Logs
8584
logs:
8685
docker-compose logs -f
8786

88-
# Mostra status dos containers e todos os containers
87+
# Show Container Status and All Containers
8988
ps:
9089
docker-compose ps -a
9190

92-
# Dentro do container, instala as dependências do composer e gera a chave(Para acessar o container use o comando: docker-compose exec app bash)
91+
# Inside the Container, Install Composer Dependencies and Generate the Key (To access the container, use the command: docker-compose exec app bash)
9392
setup:
9493
composer install || composer update
9594
php artisan key:generate
9695
php artisan migrate --seed
9796
```
9897

99-
Se preciso, acesse https://www.gnu.org/software/make/ para mais detalhes
98+
If needed, visit https://www.gnu.org/software/make/ for more details.
99+
100+
To use make:
100101

101-
Para utilizar o make:
102-
1. Acesse o diretório do projeto
103-
2. Abra o terminal/console
104-
3. Digite make (comando)
102+
- Access the project directory
103+
- Open the terminal/console
104+
- Type make (command)
105105

106-
Exemplo: Para listar os containers execute
106+
Example: To list the containers, run
107107

108108
```bash
109109
make ps
110110
```
111-
Para instalar as dependências do projeto você pode acessar o container com
111+
To install the project dependencies, you can access the container with
112112
```bash
113113
docker-compose exec app bash
114114
```
115-
E dentro do container execute
115+
And inside the container, run
116116
```bash
117117
make setup
118118
```
119119

120-
## Acesse o projeto
120+
## Access the Project
121121
[http://localhost:8989](http://localhost:8989)

0 commit comments

Comments
 (0)