@@ -80,29 +80,67 @@ memos:
80
80
# env:
81
81
# NEW_ENV_VAR: "my value"
82
82
env: null
83
+
83
84
memospot:
84
85
backups:
85
86
# Enable backups [true]. Currently, backups only run before
86
87
# database migrations and there's no retention management.
87
88
enabled: true
88
89
# Backup directory.
89
90
path: null
91
+
90
92
migrations:
91
- # Enable migrations [true]. Currently, there's one migration
92
- # available that will change local resource paths from absolute
93
- # to relative, making your data fully portable.
93
+ # Enable migrations [true]. These are database
94
+ # migrations that make upgrading Memos smoother.
94
95
enabled: true
96
+
95
97
log:
96
98
# Enable logging [false]. Used for advanced debugging.
97
99
# A new file called `logging_config.yaml` will be created next
98
100
# to this file upon the next Memospot run.
99
101
# Then, you can edit `logging_config.yaml` changing `root.level`
100
102
# from `info` to `debug` to increase the logging level.
101
103
enabled: false
104
+
102
105
remote:
103
106
# Use Memospot as a client for a remote Memos server [false].
104
107
# - Added in v0.1.6.
108
+ # The URL must point to a valid Memos server, using HTTP or HTTPS.
109
+ # Other web apps most likely won't pass the internal health check.
105
110
enabled: false
106
111
url: https://demo.usememos.com/
107
112
113
+ updater:
114
+ # Enable auto-updater [true].
115
+ # - Added in v0.1.7.
116
+ enabled: true
117
+
118
+ window:
119
+ # Window properties.
120
+ # - Added in v0.1.7.
121
+ # Managed variables store the previous state upon app close.
122
+
123
+ # Whether the window should be centered upon creation. [true]
124
+ center: true
125
+
126
+ # Whether the window should be fullscreen upon creation. [false]
127
+ fullscreen: false
128
+
129
+ # Whether the window should be resizable upon creation. [true]
130
+ resizable: true
131
+
132
+ # (Managed) Whether the window should be maximized upon creation.
133
+ maximized: false
134
+
135
+ # (Managed) Window initial width.
136
+ width: 0
137
+
138
+ # (Managed) Window initial height.
139
+ height: 0
140
+
141
+ # (Managed) Window initial x position.
142
+ x: 0
143
+
144
+ # (Managed) Window initial y position.
145
+ y: 0
108
146
` ` `
0 commit comments