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

Commit dd76883

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 9b1f920 + dc7ee12 commit dd76883

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

development/Deploy-ChatOverflow.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
# Deprecated, will be updated soonTM
2-
31
To deploy Chat Overflow and create runnable jar files, follow these steps:
42

5-
1. Execute `sbt dependencyList` to get a dependency list of the current framework version on the console
6-
2. Copy the output into the `dependencyList.txt`-file. Only copy the lines with dependency information (see commited example)
7-
3. Execute the run configuration `[Deploy] Generate Bootstrap Launcher and deploy`. This updates the `dependencies.xml`-file in the bootstrap-project, bundles everything and copies it to the `deploy`-folder. Magic.
8-
4. Navigate to the `deploy`-folder and run the bootstrap launcher with `java -jar ChatOverflow.jar`. After downloading all libraries, a standalone version of Chat Overflow should be started.
3+
1. Execute the IntelliJ run configuration `[Deploy] Generate Bootstrap Launcher and deploy` or run the make target with `make bootstrap_deploy`. This updates the `dependencies.xml`-file in the bootstrap-project with the current dependencies, bundles everything and copies it along with start scripts, the license and a readme to the `deploy`-folder. Magic.
4+
2. Navigate to the `deploy`-folder and run the bootstrap launcher with `java -jar ChatOverflow.jar`. After downloading all libraries, a standalone version of Chat Overflow should be started.
95

10-
A release of chat overflow is simply the deploy folder, without configs or libraries. Don't forget to update Chat Overflow Framework and API Version before a public release.
6+
A release of chat overflow is simply a zip archive of the deploy folder, without configs or libraries. Don't forget to update Chat Overflow Framework and API Version before a public release.

services/Discord.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ import org.codeoverflow.chatoverflow.api.io.dto.chat.discord.DiscordChatMessage;
6060

6161
public class TestPlugin extends PluginImpl {
6262
//require a new discord chat input
63-
private Requirement<DiscordChatInput> twitchIn =
63+
private Requirement<DiscordChatInput> discordIn =
6464
require.input.discordChat("discordChat", "The discord chat", false);
6565

6666
public TestPlugin(PluginManager pluginManager) {
@@ -199,7 +199,7 @@ public class TestPlugin extends PluginImpl {
199199
.withTimestamp(OffsetDateTime.now())
200200
.build();
201201

202-
//Output the embed to the twitch chat
202+
//Output the embed to the discord chat
203203
discordOut.get().sendChatMessage(embed);
204204
}
205205

0 commit comments

Comments
 (0)