Skip to content
This repository has been archived by the owner on Aug 25, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/DigiBP/DigiBP_Paneer
Browse files Browse the repository at this point in the history
  • Loading branch information
sgirardin committed May 31, 2020
2 parents 0a4bd72 + 87856f7 commit 932415a
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 11 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path

name: Maven Package

on:
release:
types: [created]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

- name: Build with Maven
run: mvn -B package --file pom.xml

- name: Publish to GitHub Packages Apache Maven
run: mvn deploy -s $GITHUB_WORKSPACE/settings.xml
env:
GITHUB_TOKEN: ${{ github.token }}
33 changes: 22 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,39 @@
This camunda project is the result of the Digitalisation of Business Process at the [FHNW MBIS](https://www.fhnw.ch/en/degree-programmes/business/msc-bis). It respresents the digitilization of a real world process and shows the improvements that come with it.

Link to start application with facial recognization
## Running instance links
Start application with facial recognization
https://bikinibottom.ch/v1

Link to camunda application:
Camunda application:
https://digibp-paneer.herokuapp.com/

Link to dev mail server:
Dev mail server:
https://heroku.mailtrap.io/inboxes

Link to the wiki for more information:
https://github.com/DigiBP/DigiBP_Paneer/wiki

Link to google sheet time logging DB:
Google sheet time logging DB:
https://docs.google.com/spreadsheets/d/1mnhEI4FpGe2UCk1ecB6hwk7sHeOifAIHqctNiDbozhU/edit#gid=645642903

Link to google drive:
Google drive:
https://drive.google.com/drive/u/1/my-drive?ths=true


## Modeling artifact links
BPM diagram:
https://github.com/DigiBP/DigiBP_Paneer/blob/master/src/main/resources/META-INF/To-beProcess.bpmn20.xml

DMN diagram:
https://github.com/DigiBP/DigiBP_Paneer/blob/master/src/main/resources/META-INF/DMN_isWorthBilling.dmn

## Documentation links
Wiki for more information:
https://github.com/DigiBP/DigiBP_Paneer/wiki



## Team members
- David Huynh
- Benedikt Bloch
- Simon Girardin
- David Huynh -> Davehuy
- Benedikt Bloch -> Benedikt Block
- Simon Girardin -> sgirardin

## Maintainer
- [Andreas Martin](https://github.com/andreasmartin)
Expand Down

0 comments on commit 932415a

Please sign in to comment.