szczanieckiej.git

commit 02f3ae79f4863f30cee7ebad49c6f425d4f7fd30

Author: Adam <git@apiote.xyz>

change last mentions of bimba to szczanieckiej

 README.adoc | 15 ++++++---------
 main.go | 2 +-


diff --git a/README.adoc b/README.adoc
index 65cb1e12534877d6a76174cd5d4d159a4ab18b88..3d4dc32687ca25f29a9d9d085259083a1f3b67a5 100644
--- a/README.adoc
+++ b/README.adoc
@@ -1,6 +1,6 @@
 = a·muse
 Adam Evyčędo <me@apiote.xyz>
-v0.1 2023-04-05
+v0.2 2023-06-XX
 :toc:
 
 szczanieckiej is a https://git.apiote.xyz/traffic.git[TRAFFIC] server that is a part of bimba.
@@ -14,7 +14,7 @@ The terminus was opened in 1925 as part of preparations for Polish General Exhibition—the biggest expo that has existed in Poland to this day, which was organised in 1929 to commemorate 10 years of Polish independence.
 
 == Building
 
-To build version 0.1, You need:
+To build version 0.2, You need:
 
 * TRAFFIC repo in `../traffic/`
 * `awk`
@@ -28,20 +28,17 @@
 ----
 ./szczanieckiej [-c configPath] command:
   -c string
-      configPath (default "/etc/bimba.toml")
+      configPath (default "/etc/szczanieckiej.toml")
   command
       one of (serve|convert)
 ----
 
 == Configuration
 
-The exmaple config file is:
+The exmaple config file, showing defaults for `feeds_path` and `listen_address`, is:
 ```
-feeds_path = "/usr/share/szczanieckiej"
-admin_contact = "mailto:admin@example.com"
-rate_limited = true
-private = false
-
+feeds_path = "/var/lib/szczanieckiej"
+listen_address = ":51354"
 enabled_feeds = [ "poznan_ztm" ]
 ```
 




diff --git a/main.go b/main.go
index 05868e021a1f08fc8277ea1d26a2b490cddbc079..1f18d78744ff943677e90f0a3eff0cc04a87d7c5 100644
--- a/main.go
+++ b/main.go
@@ -15,7 +15,7 @@ )
 
 func main() {
 	if len(os.Args) == 1 {
-		fmt.Println("bimba_server [-c <config>] <command> ")
+		fmt.Println("szczanieckiej [-c <config>] <command> ")
 		os.Exit(1)
 	}
 	configFilePath := "/etc/szczanieckiej.toml"