This repository contains the privacy policy and terms of service for the FlowForge mobile app.
index.html- Privacy Policyterms.html- Terms of Service
# From this directory, run:
gh repo create focusforge-privacy --public --source=. --remote=origin
gh repo view focusforge-privacy --web# 1. Initialize git repo
git init
git add .
git commit -m "Initial commit: Privacy policy and terms for FlowForge"
# 2. Create GitHub repo
# Go to https://github.com/new
# Create repo named "focusforge-privacy" (public)
# DO NOT initialize with README
# 3. Push to GitHub
git remote add origin https://github.com/YOUR_USERNAME/focusforge-privacy.git
git branch -M main
git push -u origin main
# 4. Enable GitHub Pages
# Go to repo Settings → Pages
# Source: Deploy from a branch
# Branch: main / root
# Save
# 5. Get your URL
# After 1-2 minutes, visit: https://YOUR_USERNAME.github.io/focusforge-privacy/Once hosted, update app.json:
{
"expo": {
"extra": {
"privacyUrl": "https://YOUR_USERNAME.github.io/focusforge-privacy/"
}
}
}Also add terms URL:
{
"expo": {
"extra": {
"termsUrl": "https://YOUR_USERNAME.github.io/focusforge-privacy/terms.html"
}
}
}- Install Netlify Drop: https://app.netlify.com/drop
- Drag this entire folder to Netlify Drop
- Get your URL (e.g., https://amazing-name-123456.netlify.app)
- Use that URL in app.json
- ✅ Privacy Policy (index.html) - brand updated to "FlowForge"
- ✅ Terms of Service (terms.html) - created
- ✅ Mobile-responsive styling
- ✅ All links formatted correctly
Note: Email addresses use @flowforge.app domain. Bundle ID is com.flowforge.app. All configured and ready for submission.