diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
deleted file mode 100644
index 8ff7fe0..0000000
--- a/.github/CODEOWNERS
+++ /dev/null
@@ -1 +0,0 @@
-* @CyB3RC0nN0R
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
deleted file mode 100644
index c90c9c9..0000000
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ /dev/null
@@ -1,28 +0,0 @@
----
-name: Bug report
-about: Create a report to help us improve
-labels: bug
----
-
-**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. Debian GNU/Linux, Microsoft Windows 10]
- - Version [e.g. 0.1-beta]
-
-**Additional context**
-Add any other context about the problem here.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
deleted file mode 100644
index 2356405..0000000
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ /dev/null
@@ -1,17 +0,0 @@
----
-name: Feature request
-about: Suggest an idea for this project
-labels: enhancement
----
-
-**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.
diff --git a/.github/bugfix.md b/.github/bugfix.md
deleted file mode 100644
index 1ebcde4..0000000
--- a/.github/bugfix.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-name: Bug fix
-title: Fixed Bug
-labels: bug
-assignees: CyB3RC0nN0R, delvh, DieGurke
-reviewers: CyB3RC0nN0R, delvh
-projects: Envoy
-milestone: Envoy v0.1-beta
----
-Fixes #{issue}
diff --git a/.github/feature_integration.md b/.github/feature_integration.md
deleted file mode 100644
index 367ee38..0000000
--- a/.github/feature_integration.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-name: Feature integration
-title: Added feature
-labels: feature
-assignees: CyB3RC0nN0R, delvh, DieGurke
-reviewers: CyB3RC0nN0R, delvh
-projects: Envoy
-milestone: Envoy v0.1-beta
----
diff --git a/.github/javadoc_update.md b/.github/javadoc_update.md
deleted file mode 100644
index 68b0afd..0000000
--- a/.github/javadoc_update.md
+++ /dev/null
@@ -1,10 +0,0 @@
----
-name: Updated Javadoc
-title: Updated Javadoc
-labels: documentation
-assignees: CyB3RC0nN0R, delvh
-reviewers: CyB3RC0nN0R, delvh
-projects: Envoy
-milestone: Envoy v0.1-beta
-
----
diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
deleted file mode 100644
index 17fc4b4..0000000
--- a/.github/workflows/maven.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: Java CI
-
-on: [push]
-
-jobs:
- build:
- name: Build & Package
- runs-on: ${{ matrix.os }}
- strategy:
- matrix:
- os: [ubuntu-latest, windows-latest]
-
- steps:
- - uses: actions/checkout@v2
- - name: Set up JDK 11
- uses: actions/setup-java@v1
- with:
- java-version: 11
- - name: Cache Maven packages
- uses: actions/cache@v2
- with:
- path: ~/.m2
- key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
- restore-keys: ${{ runner.os }}-m2
- - name: Build with Maven
- run: mvn -B package
- - name: Stage build artifacts
- run: |
- mkdir staging
- cp server/target/envoy-server-jar-with-dependencies.jar staging/envoy-server.jar
- cp client/target/envoy-client*shaded.jar staging/envoy.jar
- - uses: actions/upload-artifact@v2
- with:
- name: envoy-${{ matrix.os }}
- path: staging
diff --git a/README.md b/README.md
index 7a7cfca..f1bf5aa 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,5 @@
# Envoy
---
-
-
-
-
-
-
**Envoy** is a messenger written in Java.
It is split into three separate components: Envoy Client, Envoy Common and Envoy Server.