From 293fd874ed63d9afc7f8bbb079b32978e4d2a1aa Mon Sep 17 00:00:00 2001 From: Iskander Ignatev Date: Sat, 4 Jul 2020 23:41:02 +0300 Subject: [PATCH 1/3] GH-77 add build.gradle with dev.rudiments dependencies --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index 898ae210..efc70967 100644 --- a/README.md +++ b/README.md @@ -5,3 +5,22 @@ [![Maven Central](https://img.shields.io/maven-central/v/dev.rudiments/implementation.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22dev.rudiments%22%20AND%20a:%22implementation%22) Research project and bootstrap library. + +## Gradle project + +``` +apply plugin: 'java' +repositories { + mavenCentral() + maven { url "https://oss.sonatype.org/content/repositories/snapshots" } +} + +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + +dependencies { + implementation 'dev.rudiments:type-registry:0.3-SNAPSHOT' + implementation 'dev.rudiments:sql:0.3-SNAPSHOT' + implementation 'dev.rudiments:implementation:0.3-SNAPSHOT' +} +``` From 07b76c8b3e0816b97369fe3dfac292c2eb64fac5 Mon Sep 17 00:00:00 2001 From: Iskander Ignatev Date: Sun, 5 Jul 2020 12:06:52 +0300 Subject: [PATCH 2/3] add unittests flag for the codecov.io reports engine --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e5d0554b..1c5417b6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,7 +28,7 @@ jobs: steps: - script: | ./gradlew build aggregateScoverage - bash <(curl -s https://codecov.io/bash) + bash <(curl -s https://codecov.io/bash) -c -F unittests displayName: 'Run unit testing with gradlew' From 4d2ee7f7dc9fb5a13e116bdb9be0e6647583db3e Mon Sep 17 00:00:00 2001 From: Iskander Ignatev Date: Sun, 5 Jul 2020 23:11:50 +0300 Subject: [PATCH 3/3] document vuejs demo app and bootstrap repository --- examples/todo-app/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 examples/todo-app/README.md diff --git a/examples/todo-app/README.md b/examples/todo-app/README.md new file mode 100644 index 00000000..3d433882 --- /dev/null +++ b/examples/todo-app/README.md @@ -0,0 +1,10 @@ +# How to run the ToDo-app + +- install yarn or npm with your package manager +- cd to path/to/dir +- run `yarn serve` + +## Preconfigured Vuejs app + Tailwind CSS framework + +- clone path/to/repo/branch +