Skip to content

Commit fe61a36

Browse files
author
phasenraum2010
committed
ongoing work on #34 #39
1 parent 1fd2410 commit fe61a36

File tree

93 files changed

+1884
-1463
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1884
-1463
lines changed

README.md

+29-3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Kostenpflichtige Upgrades mit extremer Skalierung sind durch Sponsoring zeitnah
3232
Werfen Sie dazu bitte auch einen Blick auf: [Needing Help Items on Github (Labels)]
3333

3434

35+
## Module
36+
3537
## Neo4J
3638

3739
### Download
@@ -194,12 +196,36 @@ Except where otherwise noted, Documentation of this work is licensed under [Crea
194196
[heroku]:https://heroku.com
195197
[holohoax_StGB130 github page]:https://phasenraum2010.github.io/holohoax_StGB130/
196198

197-
198-
## Bookmarks
199+
## My Bookmarks
199200

200201
### Neo4J
201202

202203
* https://github.com/neo4j/neo4j
203204
* https://github.com/neo4j/neo4j-java-driver
204205
* https://github.com/neo4j/neo4j-documentation
205-
* https://github.com/neo4j/neo4j-ogm
206+
* https://github.com/neo4j/neo4j-ogm
207+
208+
### Heroku
209+
* https://devcenter.heroku.com/articles/buildpack-builds-heroku-yml
210+
211+
#### Heroku Java
212+
* https://devcenter.heroku.com/categories/java-support
213+
* https://devcenter.heroku.com/categories/java-advanced-topics
214+
* https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-java
215+
216+
#### Heroku Databases
217+
* Heroku Redis: https://devcenter.heroku.com/articles/heroku-redis
218+
* Apache Kafka on Heroku: https://devcenter.heroku.com/categories/kafka
219+
220+
#### Heroku add-ons
221+
* https://devcenter.heroku.com/articles/managing-add-ons
222+
223+
### Apache Kafka
224+
* Spring for Apache Kafka: https://docs.spring.io/spring-kafka/reference/htmlsingle
225+
* Intro to Apache Kafka with Spring: http://www.baeldung.com/spring-kafka
226+
* Apache Kafka: https://kafka.apache.org/
227+
* Kafka as a Messaging System
228+
* Kafka as a Storage System
229+
* Kafka for Stream Processing
230+
* Apache Zookeeper: https://zookeeper.apache.org/
231+
* Apache Zookeeper Wiki: https://cwiki.apache.org/confluence/display/ZOOKEEPER/Index

build.sh

-7
This file was deleted.

conf.sh

-34
This file was deleted.

defcon-cloudfoundry/manifest.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
applications:
3+
- name: defcon-cloudfoundry
4+
memory: 1G
5+
random-route: true
6+
path: target/defcon-cloudfoundry-0.0.1-SNAPSHOT.jar

defcon-cloudfoundry/pom.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>defcon-parent</artifactId>
7+
<groupId>org.woehlke.humanrights.digital.defense</groupId>
8+
<version>0.0.1-SNAPSHOT</version>
9+
<relativePath>../defcon-parent/pom.xml</relativePath>
10+
</parent>
11+
<modelVersion>4.0.0</modelVersion>
12+
13+
<artifactId>defcon-cloudfoundry</artifactId>
14+
<packaging>jar</packaging>
15+
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.springframework.boot</groupId>
20+
<artifactId>spring-boot-maven-plugin</artifactId>
21+
</plugin>
22+
</plugins>
23+
</build>
24+
25+
</project>

defcon-heroku-jpa/heroku.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
setup:
2+
addons:
3+
build:
4+
languages:
5+
- java

0 commit comments

Comments
 (0)