fediplan/README.md

61 lines
1.4 KiB
Markdown
Raw Normal View History

2019-08-22 09:54:45 +02:00
**If you want to contribute to a _translation_:**[![Crowdin](https://badges.crowdin.net/fediplan/localized.svg)](https://crowdin.com/project/fediplan)
2024-05-15 12:40:52 +05:30
## How to install FediPlan
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
There are 2 methods to run Fediplan
1. Build and run Docker image
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`
#### Steps
1. Clone this repo<br>
`git clone https://framagit.org/tom79/fediplan.git fediplan`
2. Build the Docker image<br>
`docker build -t fediplan fediplan`
3. Run the docker image<br>
`docker run fediplan`
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
4. Find the IP<br>
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
- Find 'CONTAINER ID' of fediplan's container<br>
`docker ps | grep fediplan`
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
- Find IP address of the container<br>
`docker inspect <CONTAINER ID> | grep IPAddress`
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
5. Open _<ip_address>:8080_ in your web browser
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
### 2. Manual install
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
#### Required programs
- `git`
- `php 8.3` and some extensions
- `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
1. Clone this repo<br>
`git clone https://framagit.org/tom79/fediplan.git fediplan`
2. Change directory to the cloned repo<br>
`cd fediplan`
3. Install vendors<br>
`composer install -o`
2019-08-10 15:48:38 +02:00
2024-05-15 12:40:52 +05:30
4. Point your server software to '_public_' folder
2024-05-14 15:06:46 +00:00
2024-05-15 12:40:52 +05:30
### Support My work
[fedilab.app/page/donations](https://fedilab.app/page/donations/)
2024-05-14 15:06:46 +00:00
2024-05-15 12:40:52 +05:30
### Credits
2024-05-14 15:06:46 +00:00
Docker configurations are based on [github.com/TrafeX/docker-php-nginx](https://github.com/TrafeX/docker-php-nginx)