-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from fga-eps-mds/release/v0.1.0
Release/v0.1.0
- Loading branch information
Showing
43 changed files
with
1,733 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
POSTGRES_USER=acacia | ||
POSTGRES_PASSWORD=acacia | ||
POSTGRES_DB=acacia | ||
POSTGRES_HOST=db | ||
PGDATA=/tmp/data | ||
DB_NAME=acacia |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- release/* | ||
- develop | ||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@master | ||
- name: Setup enviroment | ||
run: docker-compose up -d --build | ||
- name: Run tests | ||
run: docker exec acacia_backend bash -c "cd src/ && coverage run manage.py test && coverage xml -o cov.xml" | ||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{secrets.CODECOV_TOKEN}} | ||
file: ./src/cov.xml | ||
flags: unittests | ||
name: codecov-umbrella |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
### Django ### | ||
*.log | ||
*.pot | ||
*.pyc | ||
__pycache__/ | ||
local_settings.py | ||
db.sqlite3 | ||
media | ||
.vscode/ | ||
env/ | ||
migrations/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Código de Conduta | ||
|
||
## Propósito | ||
O projeto é mantido por estudantes durante a execução das disciplinas | ||
de Engenharia de Produto de Software e Métodos de Desenvolvimento de Software | ||
da Universidade de Brasília. | ||
Sendo assim, frisamos a importância de promover um ambiente aberto e acolhedor, | ||
nós mantenedores e contribuidores nos comprometemos a fazer participação em nosso | ||
projeto e nossa comunidade provendo uma experiência livre de assédio para todos. | ||
|
||
|
||
## Nossas Responsabilidades | ||
Os mantenedores desse projeto são responsáveis por prestar esclarecimentos em | ||
casos de dúvidas relacionadas ao código de conduta e também por ações em resposta | ||
a comportamentos inadequados. | ||
No caso de testemunhar comportamentos inadequados, | ||
estes devem ser reportados imediatamente, sendo os responsáveis do repositório | ||
obrigados a manter confidencialidade sobre a pessoa que reportar. | ||
|
||
## Exemplos de comportamentos esperados e que contribuem com o projeto | ||
|
||
* Uso de linguagem acolhedora e inclusiva | ||
* Respeito aos diferentes pontos de vista | ||
* Aceitar críticas construtivas | ||
* Demonstrar empatia com os membros da comunidade | ||
|
||
## Exemplos de comportamentos inaceitáveis | ||
|
||
* Uso de conotações sexuais | ||
* Comentários depreciativos que ataquem pessoas ou grupos | ||
* Assédio público ou privado | ||
* Publicação de conteúdo privado de terceiro sem prévia autorização | ||
* Outras condutas consideradas inapropriadas em um ambiente profissional | ||
|
||
|
||
## Escopo | ||
|
||
Esse Código de Conduta é aplicado dentro do projeto e em locais públicos onde | ||
um indivíduo esteja representando o projeto ou sua comunidade. Exemplos | ||
são um e-mail oficial sobre o projeto, ou participação em eventos como representante. | ||
|
||
|
||
## Atribuição | ||
|
||
Esse código de conduta é uma adaptação de [Contributor Covenant][homepage], version 1.4, | ||
disponível em [http://contributor-covenant.org/version/1/4][version] | ||
|
||
[homepage]: http://contributor-covenant.org | ||
[version]: http://contributor-covenant.org/version/1/4/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM python:3.7 | ||
|
||
ENV PYTHONUNBUFFERED 1 | ||
|
||
RUN mkdir /code | ||
WORKDIR /code | ||
|
||
COPY requirements.txt ./ | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
|
||
COPY . . |
Oops, something went wrong.