Tool to link accounts
Account LInking SErvice is available on PyPI. Install using pip
:
pip install alise
You can also install from the git repository:
git clone https://github.com/marcvs/alise
pip install -e ./alise
ALISE depends on gunicorn:
apt install gunicorn
# from the dir where alise is installed:
gunicorn alise.daemon:app -k "uvicorn.workers.UvicornWorker"
Then point your browser to http://localhost:8000
We provide an nginx configuration file in alise/etc/nginx.alise
(github). Simply
copy or it to nginx like:
ln -s $PWD/alise/etc/nginx.alise /etc/nginx/sites-enabled
We provide a systemd service file in alise/etc/alise.service
(github). Simply
copy link it to systemd like:
ln -s $PWD/alise/etc/alise.service /etc/systemd/system/
systemctl daemon-reload
systemctl enable alise.service
systemctl start alise.service
ALISE is configured via a single config file. A template is provided in
alise/etc/alise.conf
(github). It should be self-explanatory.