https://github.com/eliseuegewarth/sibaho
Sistema de Banco de Horas
https://github.com/eliseuegewarth/sibaho
django-application python-3-5
Last synced: 8 months ago
JSON representation
Sistema de Banco de Horas
- Host: GitHub
- URL: https://github.com/eliseuegewarth/sibaho
- Owner: eliseuegewarth
- License: lgpl-3.0
- Archived: true
- Created: 2017-01-27T17:57:06.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-22T18:49:53.000Z (over 9 years ago)
- Last Synced: 2024-09-29T17:01:23.468Z (over 1 year ago)
- Topics: django-application, python-3-5
- Language: CSS
- Size: 798 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# SiBaHo
Sistema de Banco de Horas
#Sumário
* [Dependências](https://github.com/eliseuegewarth/sibaho/tree/master#dependências)
* [Configuração de Ambiente](https://github.com/eliseuegewarth/sibaho/tree/master#configuração-de-ambiente)
#Dependências
* [Python 3.5](https://www.python.org/downloads/release/python-350/)
* Django 1.10.4 [Configuração de Ambiente](https://github.com/eliseuegewarth/sibaho/tree/master#configuração-de-ambiente)
* [Virtualenv](https://virtualenv.pypa.io/en/stable/installation/)
* [Virtualenvwrapper](https://virtualenvwrapper.readthedocs.io/en/latest/install.html)
# Configuração de Ambiente
...(Após clonar o projeto em sua maquina)...
Crie um ambiente virtual com o seguinte comando:
```bash
mkvirtualenv -p python3.5 -a path/to/sibaho/ -r requirements.txt nome_da_Virtualenv
```
Esse comando irá:
* Criar uma Virtualenv com o nome (nome_da_Virtualenv) que voce colocar;
* Configurar o python3.5 como default;
* Colocar o diretório (path/to/sibaho/) como default (entrará automaticamente no diretório ao usar `workon nome_da_Virtualenv`);
* Executar o comando `pip install -r requirements.txt`.