fediplan/README.md

95 lines
2.4 KiB
Markdown
Raw Permalink Normal View History

2025-04-04 05:34:56 +00:00
<img src="public/img/FediPlan.png" width="100">
2019-08-22 09:54:45 +02:00
2025-04-04 05:34:56 +00:00
# FediPlan
A web-app to schedule your posts with Mastodon and Pleroma.
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg?style=for-the-badge)](https://www.gnu.org/licenses/gpl-3.0)
[![Liberapay patrons](https://img.shields.io/liberapay/patrons/tom79?label=Liberapay&style=for-the-badge)](https://liberapay.com/tom79/donate)
[![Open Collective backers and sponsors](https://img.shields.io/opencollective/all/fedilab?label=Open%20Collective&style=for-the-badge)](https://opencollective.com/fedilab)
## Public servers
- [plan.fedilab.app](https://plan.fedilab.app/)
## Translate
- [Crowdin](https://crowdin.com/project/fediplan)<br>
[![](https://badges.crowdin.net/fediplan/localized.svg)](https://crowdin.com/project/fediplan)
## Self-host
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
There are 2 methods to run Fediplan
2025-04-04 05:34:56 +00:00
1. [Build and run Docker image](#1-build-and-run-docker-image)
2. [Manual install](#2-manual-install)
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
### 1. Build and run Docker image
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
#### Required programs
- `git`
- `docker`
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
#### Steps
2019-08-10 15:48:38 +02:00
2024-05-18 18:03:39 +00:00
1. Install required programs
2019-08-10 15:48:38 +02:00
2024-05-18 18:03:39 +00:00
2. Clone this repo<br>
`git clone https://framagit.org/tom79/fediplan.git fediplan`
2019-08-10 15:48:38 +02:00
2024-05-18 18:03:39 +00:00
3. Build the Docker image<br>
`docker build --tag fediplan fediplan`
2019-08-10 15:48:38 +02:00
2024-05-18 18:03:39 +00:00
4. Run the docker image<br>
`docker run --detach --restart unless-stopped --name fediplan fediplan:latest`
2019-08-10 15:48:38 +02:00
2024-05-18 18:03:39 +00:00
5. Find the IP<br>
`docker inspect fediplan | grep IPAddress`
2019-08-10 15:48:38 +02:00
2024-05-18 18:03:39 +00:00
6. Fediplan should be available at _<ip_address>:8080_
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
### 2. Manual install
2024-05-14 16:58:36 +05:30
2024-05-15 12:40:52 +05:30
#### Required programs
- `git`
2024-05-18 18:03:39 +00:00
- `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`
2024-05-15 12:40:52 +05:30
- `composer` ([getcomposer.org/download](https://getcomposer.org/download/))
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
#### Steps
2024-05-18 18:03:39 +00:00
1. Install required programs
2024-05-15 12:40:52 +05:30
2024-05-18 18:03:39 +00:00
2. Clone this repo<br>
`git clone https://framagit.org/tom79/fediplan.git fediplan`
2024-05-15 12:40:52 +05:30
3. Install vendors<br>
2024-05-18 18:03:39 +00:00
`php composer.phar install --optimize-autoloader --working-dir=fediplan`
2024-05-14 16:58:36 +05:30
2024-05-18 18:03:39 +00:00
4. Point your server software to `fediplan/public` folder
2024-05-14 15:06:46 +00:00
2025-04-04 05:34:56 +00:00
## Donate
2024-05-14 15:06:46 +00:00
2025-04-04 05:34:56 +00:00
- [Liberapay](https://liberapay.com/tom79/donate)
- [Open Collective](https://opencollective.com/fedilab)
- [More...](https://fedilab.app/page/donations/)
2024-05-15 09:24:39 +02:00
2025-04-04 05:34:56 +00:00
## Credits
Docker configurations are based on [github.com/TrafeX/docker-php-nginx](https://github.com/TrafeX/docker-php-nginx)