An open API service indexing awesome lists of open source software.

https://github.com/jmandel/gforgezulipbridge

AWS lambda hosted tool to monitor GForge changes and push to Zulip
https://github.com/jmandel/gforgezulipbridge

Last synced: 6 months ago
JSON representation

AWS lambda hosted tool to monitor GForge changes and push to Zulip

Awesome Lists containing this project

README

          

# gforgeZulipBridge

### Setup
```
git clone https://github.com/jmandel/gforgeZulipBridge
cd gforgeZulipBridge
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
```

### Configure

Create `env_values.py` with secrets, like:

```
cat > env_values.py

import os

os.environ['GFORGE_PASSWORD'] = "secret"
os.environ['ZULIP_EMAIL'] = "secret"
os.environ['ZULIP_API_KEY'] = "secret"
```

### Deploy to lambda

sh deploy.sh