Matthew Wild b036caa85e Dockerfile: Ensure a compiler is available while pip-installing requirements
Dependencies are not necessarily packaged for all architectures. In some cases
(such as aiohttp, and others, on ARM) pip will attempt to compile the
dependency from scratch. Since switching to multi-stage builds, we have been
installing these without a compiler present which caused the build to fail on
ARM architectures.

This commit temporarily installs build-essential packages while running pip,
then removes them again afterwards.
2022-01-31 21:45:39 +00:00
2021-02-03 18:30:38 +01:00
2021-01-17 20:11:26 +01:00
2021-01-23 12:53:29 +01:00
2021-01-17 20:13:05 +01:00
2021-06-18 16:11:22 +02:00
2021-01-22 15:29:58 +01:00
2020-02-17 16:10:42 +00:00
2021-01-21 18:09:57 +01:00
2021-01-17 20:11:26 +01:00
2021-11-08 18:07:34 +01:00

Snikket Web Portal

Screenshot of the app

Development quickstart

$ direnv allow
$ cp example.env .env
$ $EDITOR .env  # to adapt the configuration to your needs
$ pip install -r requirements.txt
$ pip install -r build-requirements.txt
$ make
$ quart run

Configuring

Purely via environment variables

For a list of required and understood environment variables as well as their semantics, please refer to example.env.

Via python code

In addition to statically setting environment variables, it is possible to initialise the environment variables in a python file. To do that, pass the path to the python file as SNIKKET_WEB_PYENV environment variable.

The python file is evaluated before further environment variable processing takes place. Every name defined in that file which begins with an upper case ASCII letter is included in the processing of environment variables for configuration purposes.

For a (non-productive) example of such a file, see example.env.py.

Description
This is the web portal for Snikket Chat services. To learn more about what Snikket Chat services are, check the website.
Readme AGPL-3.0 4.8 MiB
Languages
Python 46.1%
HTML 34.7%
SCSS 13.3%
Jinja 2.9%
Shell 1%
Other 2%