A service for ingesting user data and creating GitHub pull requests. Used by WATcloud.
docker compose up app --build --watch
The service expects a JSON payload with the following structure:
{
"data": {
"general": {
"watcloud_username": "johndoe",
"contact_emails": ["[email protected]", "[email protected]"]
},
"other_fields": "can be any additional data"
}
}
data.general.watcloud_username
: String - Unique identifier for the user.data.general.contact_emails
: Array of strings - Non-empty list of contact emails. The first email will be used for email verification.