Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • Joinfut Wiki Joinfut Wiki
  • Project information
    • Project information
    • Activity
    • Labels
    • Planning hierarchy
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 6
    • Issues 6
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Joinfut
  • Joinfut WikiJoinfut Wiki
  • Wiki
  • Instalação

Instalação · Changes

Page history
Atualizando info de instalação e home authored Aug 28, 2022 by Gabriel Fanto Stundner's avatar Gabriel Fanto Stundner
Hide whitespace changes
Inline Side-by-side
Instalação.md
View page @ 34884984
...@@ -5,11 +5,101 @@ ...@@ -5,11 +5,101 @@
--- ---
## IDE
* Intellij (Em construção)
* Datagrip (Em construção)
* VSCODE (Em construção)
## Backend
* [**PostgreSQL**](#postgresql)
* [**Postman**](#postman) * [**Postman**](#postman)
* [**Java**](#java)
* Maven (Em construção)
## Frontend
*
## Database
* [**PostgreSQL**](#postgresql)
* Pgadmin 4 (Em construção)
---
### Postman
* [**Linux**](#postmanlinux)
* [**Windows**](#postmanwindows)
#### Postman Linux
* Acesse [Site oficial](https://www.postman.com/downloads/)
* Abra um console no diretório onde foi baixado o postman:
```shell
$ tar -xzvf tar -xzvf postman-linux-x64.tar.gz
```
* Acesse o Diretório criado e rode o executável **Postman**
```shell
$ cd Postman
$ ./Postman
```
* Faça login no seu email Google
* Pode trocar o tema para escuro caso seja muito claro
---
### Java
* Versão do Java que iremos utilizar: `Java 11`
#### Linux
**Instalação do Java 11 no linux**
```shell
sudo apt install openjdk-11-jre-headless
```
* Para testar se instalou
```shell
java --version
#openjdk 11.0.16 2022-07-19
#OpenJDK Runtime Environment (build 11.0.16+8-post-Ubuntu-0ubuntu122.04)
#OpenJDK 64-Bit Server VM (build 11.0.16+8-post-Ubuntu-0ubuntu122.04, mixed mode, sharing)
```
**Instalação do Javac (Java compiler) no linux**
```shell
sudo apt install openjdk-11-jdk-headless
```
* Para testar se instalou
```shell
javac --version
#javac 11.0.16
```
**Java 11.0.16** é a ultima versão dessa versão do java
---
### Maven
---
### POSTGRESQL ### POSTGRESQL
...@@ -52,9 +142,9 @@ ALTER USER postgres with encrypted password 'postgres'; ...@@ -52,9 +142,9 @@ ALTER USER postgres with encrypted password 'postgres';
# Clique Ctrl + D para sair do postgres # Clique Ctrl + D para sair do postgres
# acesse o arquivo abaixo # acesse o arquivo abaixo
sudo vim /etc/postgresql/9.1/main/pg_hba.conf sudo vim /etc/postgresql/12/main/pg_hba.conf
# troque a mensagem de vez de peer para md5 e depois salve # troque a mensagem de vez de peer para md5 e depois salve no vim (:wq)
local all postgres md5 local all postgres md5
# reinicie o arquivo de configuração # reinicie o arquivo de configuração
...@@ -94,29 +184,5 @@ createdb -h localhost -p 5432 -U postgres joinfut ...@@ -94,29 +184,5 @@ createdb -h localhost -p 5432 -U postgres joinfut
--- ---
### Postman
* [**Linux**](#postmanlinux)
* [**Windows**](#postmanwindows)
#### Postman Linux
* Acesse [Site oficial](https://www.postman.com/downloads/)
* Abra um console no diretório onde foi baixado o postman:
```shell
$ tar -xzvf tar -xzvf postman-linux-x64.tar.gz
```
* Acesse o Diretório criado e rode o executável **Postman**
```shell
$ cd Postman
$ ./Postman
```
* Faça login no seu email Google
* Pode trocar o tema para escuro caso seja muito claro
Clone repository
  • Instalação
  • README
  • Retro
  • Utilizando a wiki
    • adicionando imagens
    • escrevendo em markdown
    • git
    • wiki no editor de texto
  • arquitetura
  • backend
    • backend_home
    • datagrip_instalacao
    • intellij_instalacao
    • java_instalacao
    • maven_instalacao
    • postman_instalacao
    • postman_utilizacao
View All Pages