|
7 | 7 | #####################################################################
|
8 | 8 |
|
9 | 9 |
|
| 10 | +# |
| 11 | +# URL of the public User Interface |
| 12 | +LOWCODER_PUBLIC_URL="https://lowcode.aroha.biz/" |
| 13 | + |
| 14 | + |
| 15 | +# ! PLEASE CHANGE THESE TO SOMETHING UNIQUE ! |
| 16 | +# |
| 17 | +# LOWCODER_DB_ENCRYPTION_PASSWORD and LOWCODER_DB_ENCRYPTION_SALT is used |
| 18 | +# to encrypt sensitive data in mongo database so it is important to change the defaults |
| 19 | +# |
| 20 | +LOWCODER_DB_ENCRYPTION_PASSWORD="D9tqXbcYT35RHc" |
| 21 | +LOWCODER_DB_ENCRYPTION_SALT="T4VGcqpq3MJa4YMIAxdIFD" |
| 22 | + |
| 23 | +# |
| 24 | +# API-KEY secret - should be a string of at least 32 random characters |
| 25 | +# - on linux/mac, generate one eg. with: head /dev/urandom | head -c 30 | shasum -a 256 |
| 26 | +# |
| 27 | +LOWCODER_API_KEY_SECRET="xhFjEkfqBhgueMkBEx3kiV5qFmKlvgSZf8pOwc" |
| 28 | + |
| 29 | + |
| 30 | +# Lowcoder API service URL |
| 31 | +LOWCODER_API_SERVICE_URL="http://localhost:8080" |
| 32 | +# Lowcoder Node service URL |
| 33 | +LOWCODER_NODE_SERVICE_URL="http://localhost:6060" |
| 34 | + |
| 35 | +# |
| 36 | +# ! PLEASE CHANGE THESE TO SOMETHING UNIQUE ! |
| 37 | +# |
| 38 | +# Secret and salt used for encrypting comunication between API service and NODE service |
| 39 | +# |
| 40 | +LOWCODER_NODE_SERVICE_SECRET="XFFPDlCAxtizTLggIOCos5qfQkt99EqRdFQFKZ3PPj82V" |
| 41 | +LOWCODER_NODE_SERVICE_SECRET_SALT="tyVFuxz76Gd7TDCSElx" |
| 42 | + |
| 43 | + |
| 44 | +# Lowcoder superuser username |
| 45 | +LOWCODER_SUPERUSER_USERNAME=admin@localhost |
| 46 | +# Lowcoder superuser password |
| 47 | +# If left blank, a password will be generated and written into log (lowcoder-stacks/logs/api-service/api-service.log) |
| 48 | +LOWCODER_SUPERUSER_PASSWORD=KoiMilGayaa@12345 |
0 commit comments