Skip to content

Commit e3c5936

Browse files
committed
add new post
1 parent a58ccf0 commit e3c5936

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+12479
-377
lines changed

docs/assets/favicon.ico

15 KB
Binary file not shown.

docs/assets/logo.svg

+85
Loading

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Papermerge Blog
1+
# Home
22

33
News, announcements and articles related to Papermerge and document management in general

docs/posts/08-play-with-3.3.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
---
2+
date: 2024-11-28
3+
tags:
4+
- community
5+
---
6+
7+
# Let's Play With Release 3.3!
8+
9+
We are testing ferociously version of 3.3. It will take some until we
10+
hunt down major bugs.
11+
12+
You can help! Start messing around with it right now. See how it feels like!
13+
Open bugs, report issues with documentation. Give us feedback.
14+
15+
16+
Start docker container with basic webapp using following command:
17+
18+
<!-- more -->
19+
20+
```shell
21+
docker run -p 12000:80 \
22+
-e PAPERMERGE__SECURITY__SECRET_KEY=abc \
23+
-e PAPERMERGE__AUTH__PASSWORD=pass123 \
24+
papermerge/papermerge:3.3b16
25+
```
26+
27+
* Username: `admin`
28+
* Password: `pass123`
29+
* URL: `http://localhost:12000`
30+
31+
32+
![Preview of 3.3 beta](08-play-with-3.3/papermerge-3.3.gif)
33+
34+
35+
As of writing this post, the latest docker image is `3.3b16`. But that may change.
36+
Check latest image version [on github repository tags](https://github.com/papermerge/papermerge-core/tags)
37+
or directly on [docker hub](https://hub.docker.com/r/papermerge/papermerge/tags).
38+
39+
Documentation has new sections:
40+
41+
* [Document Types](https://docs.papermerge.io/3.3/user/document-types/)
42+
* [Custom Fields](https://docs.papermerge.io/3.3/user/custom-fields/)
43+
* [Path Templates](https://docs.papermerge.io/3.3/user/path-templates/)
44+
45+
Check [docker compose](https://docs.papermerge.io/3.3/setup/docker-compose/) section for how to start
46+
application locally.
47+
48+
* Found a problem? Open [a ticket on github](https://github.com/ciur/papermerge/issues).
49+
* Feedback? Start a [discussions on github](https://github.com/ciur/papermerge/discussions).
4.2 MB
Loading

mkdocs.yml

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ site_url: https://papermerge.blog
33

44
theme:
55
name: material
6+
logo: assets/logo.svg
7+
favicon: assets/favicon.ico
68
features:
79
- navigation.sections
810

@@ -12,4 +14,5 @@ nav:
1214
plugins:
1315
- blog:
1416
blog_dir: .
17+
post_excerpt: optional
1518
- search

0 commit comments

Comments
 (0)