Skip to content

Commit

Permalink
Merge pull request #129 from kit-data-manager/development
Browse files Browse the repository at this point in the history
Improves and adds github related things
  • Loading branch information
FelixFrizzy authored May 28, 2024
2 parents 51e7b51 + 34ec3a7 commit 3050393
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 7 deletions.
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/comment.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Comment
about: Describe anything that doesn't fit to the other templates
title: ''
labels: comment / enhancement
assignees: ''

---


20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: comment / enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: Question
about: If you have a question you can ask it here
title: ''
labels: question
assignees: ''

---


Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: docker compose tests
name: tests

on:
# push:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# EVOKS repository
![tests](https://github.com/kit-data-manager/EVOKS/actions/workflows/tests.yml/badge.svg)
[![codecov](https://codecov.io/gh/kit-data-manager/EVOKS/graph/badge.svg?token=qXx2sFQPxW)](https://codecov.io/gh/kit-data-manager/EVOKS)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

EVOKS (Editor for Vocabularies to Know Semantics) is a software for creating and publishing SKOS vocabularies and thesauri.
It allows you to:
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.7"
services:
postgres:
container_name: evokstest_${INSTANCE_NAME:-defaultinstance}_postgres
container_name: evokstest_postgres
image: postgres
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgres}
Expand All @@ -19,7 +19,7 @@ services:
timeout: 3s
retries: 5
web:
container_name: evokstest_${INSTANCE_NAME:-defaultinstance}_testrunner
container_name: evokstest_testrunner
build:
context: "."
# caution, don't change this port since it is the one used within the container
Expand All @@ -44,7 +44,7 @@ services:
- ./skosmos-dev/config.ttl:/code/skosmos-dev/config.ttl
- ./skosmos-live/config.ttl:/code/skosmos-live/config.ttl
fuseki-dev:
container_name: evokstest_${INSTANCE_NAME:-defaultinstance}_fuseki-dev
container_name: evokstest_fuseki-dev
image: secoresearch/fuseki
hostname: fuseki-dev
environment:
Expand All @@ -57,7 +57,7 @@ services:
networks:
- fuseki-dev
fuseki-live:
container_name: evokstest_${INSTANCE_NAME:-defaultinstance}_fuseki-live
container_name: evokstest_fuseki-live
image: secoresearch/fuseki
hostname: fuseki-live
environment:
Expand All @@ -70,7 +70,7 @@ services:
networks:
- fuseki-live
skosmos-dev:
container_name: evokstest_${INSTANCE_NAME:-defaultinstance}_skosmos-dev
container_name: evokstest_skosmos-dev
build:
context: https://github.com/NatLibFi/Skosmos.git#v2.17
dockerfile: dockerfiles/Dockerfile.ubuntu
Expand All @@ -84,7 +84,7 @@ services:
volumes:
- ./skosmos-dev/config.ttl:/var/www/html/config.ttl
skosmos-live:
container_name: evokstest_${INSTANCE_NAME:-defaultinstance}_skosmos-live
container_name: evokstest_skosmos-live
build:
context: https://github.com/NatLibFi/Skosmos.git#v2.17
dockerfile: dockerfiles/Dockerfile.ubuntu
Expand Down

0 comments on commit 3050393

Please sign in to comment.