A way to safely schedule messages with Mastodon and Pleroma
Find a file
2025-04-03 17:39:03 +00:00
assets default assets 2024-05-19 10:05:48 +02:00
bin - migrationi to Symfony 7 2024-05-07 17:15:33 +02:00
config new languages 2024-05-14 08:50:06 +02:00
docker_config Add Docker configurations 2024-05-14 16:58:36 +05:30
public Fix layout 2024-05-18 19:40:04 +02: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 Crowdin updates 2024-05-16 13:41:50 +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 Add Docker configurations 2024-05-14 16:58:36 +05:30
importmap.php Missing files 2024-05-09 16:10:06 +02:00
LICENSE Add LICENSE 2019-08-13 10:38:58 +02:00
README.md Update README.md: Re-add Crowdin badge 2025-04-03 17:39:03 +00:00
symfony.lock Type for variables and returns for methods 2024-05-09 16:41:04 +02: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