Server API for Open Podcast Connect Platform
Create the following table in the respective database
CREATE TABLE IF NOT EXISTS podcastConnectWaitlist (
env_name VARCHAR(128) NOT NULL,
env_value VARCHAR(1024) NOT NULL,
value_encrypted BOOLEAN NOT NULL DEFAULT FALSE,
session_id CHAR(36) NOT NULL,
inserted_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (session_id, env_name)
);
Grant the following permissions to the user
CREATE USER openpodcast_connect@'%' IDENTIFIED BY '<password>';
GRANT INSERT ON openpodcast_auth.podcastConnectWaitlist TO openpodcast_connect@';
Content type
Image
Digest
sha256:fe5ee9e18…
Size
112.5 MB
Last updated
about 1 year ago
docker pull openpodcast/connect-api