blob: c3bac392a5ebf3ff4395576a0d377d47f2b7ae55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
[
{
type: install
message: <<EOM
========================================================================
Diddle requires an environment file for configuration.
Create the env file:
install -m 600 /dev/null %%PREFIX%%/etc/diddle.env
Then edit it with your settings (DATABASE_URL, SECRET_KEY, etc.):
ee %%PREFIX%%/etc/diddle.env
Then enable the service and configure settings:
sysrc diddle_enable=YES
sysrc diddle_env_file=%%PREFIX%%/etc/diddle.env
sysrc diddle_bind="0.0.0.0:8000"
sysrc diddle_workers=4
Start the service:
service diddle start
========================================================================
EOM
}
]
|