commit c436f57df630111c7fafac883019ff77f455eac1
Author: MTRNord <mtrnord1@gmail.com>
Date: Sat, 11 Nov 2017 12:34:19 +0100
Initial Commit
Signed-off-by: MTRNord <mtrnord1@gmail.com>
Diffstat:
4 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1 @@
+.idea/
+\ No newline at end of file
diff --git a/README.md b/README.md
@@ -0,0 +1,24 @@
+# Matrix-Appservice-Go
+This is a Matrix Application Service framework written in Golang.
+The Framework is in Alpha nothing does yet work!
+
+## Support Room
+Join the discussion at [#matrix-appservice-go:matrix.ffslfl.net](https://matrix.to/#/#matrix-appservice-go:matrix.ffslfl.net)
+
+This can be used to quickly setup performant application services for almost
+anything you can think of in a web framework agnostic way.
+
+To create an app service registration file:
+
+// TODO Add Example
+
+You only need to generate a registration once, provided the registration info does not
+change. Once you have generated a registration, you can run the app service like so:
+
+// TODO Add Example
+
+TLS Connections
+===============
+If `MATRIX_AS_TLS_KEY` and `MATRIX_AS_TLS_CERT` environment variables are
+defined and point to valid tls key and cert files, the AS will listen using
+an HTTPS listener.
+\ No newline at end of file
diff --git a/app-service-registration.go b/app-service-registration.go
@@ -0,0 +1,2 @@
+package matrix_appservice_go
+
diff --git a/app-service.go b/app-service.go
@@ -0,0 +1 @@
+package matrix_appservice_go