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

https://github.com/sloppycoder/poc-webhook-svc


https://github.com/sloppycoder/poc-webhook-svc

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# POC invoking webhook

More to come.

## Development
### create test database
```sql
create database poc;
create user pocuser with encrypted password 'password';
grant all privileges on database poc to pocuser;

```