Hero page:
- Replace GIF with squaremcp-hero-loop.mp4 (autoplay, muted, loop)
- Update styles, scripts, tests, Dockerfile, baselines
- Deployed and verified
Social video uploads:
- Twitter/X: uploadVideoAndTweet via v1.1 media/upload + v2 tweets
- Facebook: createVideoPost via Graph API /{pageId}/videos
- Instagram: createReel via Graph API (container → poll → publish)
- TikTok: REST endpoints + OpenAPI schema for video upload
Marketing:
- TikTok content prompts, scripts, and posting schedule
Note: Remotion not mentioned in any user-facing content
11 lines
567 B
Docker
11 lines
567 B
Docker
FROM nginx:1.27-alpine
|
|
|
|
COPY product/site/nginx-site.conf /etc/nginx/conf.d/default.conf
|
|
COPY product/site/index.html /usr/share/nginx/html/index.html
|
|
COPY product/site/styles.css /usr/share/nginx/html/styles.css
|
|
COPY product/site/script.js /usr/share/nginx/html/script.js
|
|
COPY product/site/squaremcp-logo.svg /usr/share/nginx/html/squaremcp-logo.svg
|
|
COPY product/site/squaremcp-hero-loop.mp4 /usr/share/nginx/html/squaremcp-hero-loop.mp4
|
|
COPY product/site/privacy.html /usr/share/nginx/html/privacy.html
|
|
COPY product/site/terms.html /usr/share/nginx/html/terms.html
|