modified: README.rst

modified:   development.ini
This commit is contained in:
Russell Ballestrini 2025-03-02 12:58:29 -05:00
parent e30dd5ddf1
commit b792fdf44f
2 changed files with 6 additions and 3 deletions

View file

@ -9,7 +9,7 @@ This ``Makefile`` based workflow lets you choose between installing Remarkbox fr
- For a PyPI Installation, run::
wget "https://git.unturf.com/engineering/remarkbox/remarkbox/-/blob/main/Makefile"
wget "https://git.unturf.com/engineering/remarkbox/remarkbox/-/raw/main/Makefile"
make install-from-pypi
- For a Source Installation (editable mode), run::

View file

@ -46,14 +46,17 @@ app.avatar.size = 35
# In prod I set this to: remarkbox.com (default = "")
#app.root_domain =
app.root_domain = ${REMARKBOX_APP_ROOT_DOMAIN}
#app.root_domain = localhost
app.root_domain = ${REMARKBOX_APP_ROOT_DOMAIN:-localhost}
# If set we force all links related to `join or log in` to this base url
# and use this url for links in email notifications.
# Also useful when multiple subdomains point at the same Remarkbox cluster.
# In prod I set this to: https://my.remarkbox.com (default = request.host_url)
#app.app_url =
app.app_url = ${REMARKBOX_APP_URL}
#app.root_domain = http://localhost:6543
app.app_url = ${REMARKBOX_APP_URL:-http://localhost:6543}
# if your marketing / main landing page base url is different then app url.
# In prod I set this to: https://www.remarkbox.com (default = request.app_url)