A way to safely schedule messages with Mastodon and Pleroma
Find a file
Thomas f644024c6b Merge branch 'l10n_develop' into 'develop'
New Crowdin updates

See merge request tom79/fediplan!89
2025-04-04 05:35:03 +00:00
assets default assets 2024-05-19 10:05:48 +02:00
bin Release 1.2.0 2024-05-14 15:06:46 +00:00
config Release 1.2.0 2024-05-14 15:06:46 +00:00
docker_config Release 1.2.0 2024-05-14 15:06:46 +00:00
public Release 1.2.2 2024-05-18 17:43:51 +00:00
src Fix custom emojis not displayed in messages and screen name 2025-04-03 17:36:43 +02:00
templates Change title for schedule/scheduled pages 2025-04-03 16:35:29 +02:00
translations New translations fediplan.en.yaml (Arabic) 2025-04-03 17:56:47 +00:00
.env :-\ 2025-04-03 17:48:05 +02:00
.gitignore - Update libs 2024-04-19 17:51:20 +02:00
composer.json Add timezone to the date of scheduled messages 2025-04-03 15:24:56 +02:00
composer.lock Add timezone to the date of scheduled messages 2025-04-03 15:24:56 +02:00
crowdin.yml Some changes 2020-05-01 18:29:02 +02:00
Dockerfile Release 1.2.0 2024-05-14 15:06:46 +00:00
importmap.php Release 1.2.0 2024-05-14 15:06:46 +00:00
LICENSE Add LICENSE 2019-08-13 10:38:58 +02:00
README.md Update readme 2025-04-04 05:34:56 +00:00
symfony.lock Release 1.2.0 2024-05-14 15:06:46 +00:00

FediPlan

A web-app to schedule your posts with Mastodon and Pleroma.

License: GPL v3 Liberapay patrons Open Collective backers and sponsors

Public servers

Translate

Self-host

There are 2 methods to run Fediplan

  1. Build and run Docker image
  2. Manual install

1. Build and run Docker image

Required programs

  • git
  • docker

Steps

  1. Install required programs

  2. Clone this repo
    git clone https://framagit.org/tom79/fediplan.git fediplan

  3. Build the Docker image
    docker build --tag fediplan fediplan

  4. Run the docker image
    docker run --detach --restart unless-stopped --name fediplan fediplan:latest

  5. Find the IP
    docker inspect fediplan | grep IPAddress

  6. Fediplan should be available at <ip_address>:8080

2. Manual install

Required programs

  • git

  • php 8.3 with these extensions:

    For Composer

    • openssl
    • phar
    • iconv
    • xml
    • simplexml
    • xmlwriter

    For running

    • ctype
    • curl
    • dom
    • fpm
    • intl
    • mbstring
    • simplexml
    • session
    • tokenizer
  • composer (getcomposer.org/download)

Steps

  1. Install required programs

  2. Clone this repo
    git clone https://framagit.org/tom79/fediplan.git fediplan

  3. Install vendors
    php composer.phar install --optimize-autoloader --working-dir=fediplan

  4. Point your server software to fediplan/public folder

Donate

Credits

Docker configurations are based on github.com/TrafeX/docker-php-nginx