feat: Implemented fetching stories

Signed-off-by: Philipp Le <philipp@philipple.de>
Change-Id: I3841b5ca69f304c52c6bc6f32d3a0329b0547db4
diff --git a/src/config.example.ts b/src/config.example.ts
new file mode 100644
index 0000000..bbb587f
--- /dev/null
+++ b/src/config.example.ts
@@ -0,0 +1,23 @@
+
+// Put username here
+export const username = "";
+
+export const story_config = {
+    users: [
+        // Add users to watch here
+    ],
+    destination: "download",
+    email: {
+        smtp: {
+            host: "",       // SMTP host
+            port: 587,
+            user: "",       // SMTP user
+            password: "",   // SMTP password
+            starttls: true
+        },
+        from: "",
+        to: "",
+        subject: ""
+    },
+    sleep_sec: (2 * 3600)
+};