https://github.com/dvanael/gefa-soft
Sistema Web para gerenciamento de uma casa farinha.
https://github.com/dvanael/gefa-soft
django django-project management-system python webapp
Last synced: about 1 year ago
JSON representation
Sistema Web para gerenciamento de uma casa farinha.
- Host: GitHub
- URL: https://github.com/dvanael/gefa-soft
- Owner: dvanael
- Created: 2024-10-21T19:14:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-17T12:10:04.000Z (over 1 year ago)
- Last Synced: 2025-03-28T09:42:55.795Z (about 1 year ago)
- Topics: django, django-project, management-system, python, webapp
- Language: HTML
- Homepage:
- Size: 171 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GEFA SOFT
Sistema Web para Gerenciamento de Casa de Farinha
## Sobre
O GEFA SOFT visa facilitar a vida dos gerentes de Casas de Farinha. Com ele, você pode gerenciar as contas da empresa.
## Instalação
### Configurando o ambiente
- Clone o [repositório](https://github.com/IFRN-SPP/cooplink)
```bash
git clone https://github.com/IFRN-SPP/cooplink.git
```
- Crie um ambiente virtual
```bash
python -m venv .venv
```
- Ative o ambiente virtual
_windows_
```powershell
.venv/Scripts/activate
```
_linux, macOs_
```bash
source .venv/bin/activate
```
---
### Configurando sua máquina
- Instale as dependências
```bash
pip install -r requirements.txt
```
- Crie as variáveis de ambiente
```bash
python scripts/env.py
```
> Se necessário, mude as configurações do arquivo `.env`
- Faça as migrações necessárias
```bash
python manage.py migrate
```
---
### Rodando o servidor
- Crie um **super usuário**.
```bash
python manage.py createsuperuser
```
- Rode o servidor
```bash
python manage.py runserver
```
- Acesse a aplicação localmente
- **[localhost:8000/](http://localhost:8000/)**
---
## Colaboradores