@lexho111/plainblog 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,10 @@ await blog.init();
|
|
|
22
22
|
await blog.startServer();
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
Now you can open your blog in your webbrowser on `http://localhost:8080`. Login via the login link in the navbar to begin with adding new articles, the password is '**_admin_**'.
|
|
26
|
+
|
|
27
|
+
or with the BlogBuilder
|
|
28
|
+
|
|
25
29
|
```
|
|
26
30
|
const blog = new BlogBuilder()
|
|
27
31
|
.withTitle("Mein Blog")
|
|
@@ -35,8 +39,6 @@ await blog.init();
|
|
|
35
39
|
await blog.startServer({ httpPort: 38080 });
|
|
36
40
|
```
|
|
37
41
|
|
|
38
|
-
Now you can open your blog in your webbrowser on `http://localhost:8080`. Login via the login link in the navbar to begin with adding new articles, the password is '**_admin_**'.
|
|
39
|
-
|
|
40
42
|
## More Features
|
|
41
43
|
|
|
42
44
|
### add a header photo
|