Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 896 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 896 Bytes

2024.2-T01-Pontual

Repositório de projeto da disciplina de REQ-T1.

Acesse a documentação do projeto.

Como rodar a API

# Configurações iniciais
make config

# Criei um ambiente virtual
python3 -m venv env

# Ative o ambiente virtual
source env/bin/activate

# Instale as dependências
make install

# Inicie o banco de dados
docker compose up -d

# Execute o projeto
make start

Como rodar o Frontend

# Instale as dependências
flutter pub get

# Atualize a biblioteca http para aceitar credenciais
# OBS: Encontre o arquivo "browser_client.dart" no seu sistema e altere as linhas 4 e 7:
# (find ~/.pub-cache/hosted/pub.dev/http-1.3.0/lib/src -name "browser_client.dart")

bash scripts/flutter.sh

# Execute o projeto
flutter run -d web-server --web-hostname=localhost --web-port=3000