commit | 0adfd5c0dbfe6a990eb170f725d163c110bf94b9 | [log] [tgz] |
---|---|---|
author | Akron <nils@diewald-online.de> | Tue Dec 20 16:02:25 2022 +0100 |
committer | Akron <nils@diewald-online.de> | Tue Dec 20 16:02:25 2022 +0100 |
tree | e9957cb927b7d5756db9cfcbf2a6152760917a65 | |
parent | 6aee7fe0bf67842d32f080c7dd8cebf175363d07 [diff] |
Change default port Change-Id: Ib7f3c113260902410970b900ec1bff73e91ffb19
diff --git a/.gitignore b/.gitignore index 7ba9c90..4c621e4 100644 --- a/.gitignore +++ b/.gitignore
@@ -1,3 +1,4 @@ db sandbox -todo.org \ No newline at end of file +todo.org +Kalamar-Plugin-ExternalSale
diff --git a/service.go b/service.go index e53c046..2c341d2 100644 --- a/service.go +++ b/service.go
@@ -132,5 +132,5 @@ return } r := setupRouter() - r.Run(":8080") + log.Fatal(http.ListenAndServe(":5722", r)) }