postiz-app icon indicating copy to clipboard operation
postiz-app copied to clipboard

Facebook / Instagram require privacy policy

Open Buster14 opened this issue 1 year ago • 3 comments

For installation issues, please visit our https://discord.postiz.com for assistance.

Hi as per title, Facebook / Instagram require privacy policy link to register as devs. I'm running this on lxc proxmox debian 12 with cloudflared lxc. How do I put privacy policy link on the login page? Even if i were to mod the html login page, the compose file wouldn't honor it right since it pulls image online?

Buster14 avatar Jan 17 '25 09:01 Buster14

Feel free to open a pull request for a custom privacy policy @Buster14

nevo-david avatar Feb 06 '25 07:02 nevo-david

Certain other systems I've used allow for custom pages to be dynamically added to the router - I know how to do this in NextJS, might PR this later if I have a chance.

JamesonRGrieve avatar Feb 11 '25 16:02 JamesonRGrieve

@JamesonRGrieve Would be awesome if you could do that. I know very little typescript and CSS so I can't be much of a help..

Buster14 avatar Feb 17 '25 07:02 Buster14

This issue is stale because it has been open for 90 days with no activity.

github-actions[bot] avatar May 18 '25 08:05 github-actions[bot]

This issue was closed because it has been inactive for 7 days since being marked as stale.

github-actions[bot] avatar May 25 '25 08:05 github-actions[bot]

  1. run
git clone https://github.com/gitroomhq/postiz-app.git
  1. cd postiz-app

  2. change the privacy policy and TOS links in apps/frontend/src/components/auth/register.tsx to yours

  3. install docker cli and login

  4. run

docker build -t hubusername/postiz:latest -f Dockerfile.dev .

to build the image directly. where 'hubusername' is your Docker Hub Username

  1. run
docker push hubusername/postiz:latest

to push the image to docker hub

  1. You can now use this custom container in your Coolify docker-compose file. Here's an example of how to reference it in your docker-compose.yml:
services:
  postiz:
    image: hubusername/postiz:latest
    # ... other configuration options

us3r0x0 avatar Aug 05 '25 23:08 us3r0x0