https://github.com/sloppycoder/poc-webhook-svc
https://github.com/sloppycoder/poc-webhook-svc
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/sloppycoder/poc-webhook-svc
- Owner: sloppycoder
- Created: 2021-05-16T12:26:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-22T06:15:12.000Z (about 5 years ago)
- Last Synced: 2025-01-11T08:14:03.120Z (over 1 year ago)
- Language: Java
- Size: 31.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```