formwork/README.md

89 lines
3.4 KiB
Markdown
Raw Normal View History

2022-11-27 21:21:19 +01:00
# <img src="panel/assets/images/icon.svg" height="28"> Formwork
2019-03-20 12:20:39 +01:00
2024-06-15 18:54:07 +02:00
[![Discord](https://img.shields.io/discord/637658168754831380?color=%235865f2&label=chat&logo=discord&logoColor=%23fff)](https://discord.gg/zgFRhSDMBW)
2019-05-13 13:03:58 +02:00
[![GitHub Release Date](https://img.shields.io/github/release-date/getformwork/formwork.svg)](https://github.com/getformwork/formwork/releases/latest)
[![GitHub All Releases](https://img.shields.io/github/downloads/getformwork/formwork/total.svg)](https://github.com/getformwork/formwork/releases)
[![Packagist](https://img.shields.io/packagist/dt/getformwork/formwork.svg?color=%23f28d1a&label=Packagist%20downloads)](https://packagist.org/packages/getformwork/formwork)
[![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/getformwork/formwork.svg)]()
[![PHP from Packagist](https://img.shields.io/packagist/php-v/getformwork/formwork.svg?version=2.x-dev)](#requirements)
2019-03-20 12:20:39 +01:00
🏗 Formwork is a flat file-based Content Management System (CMS) to build and manage simple sites.
2018-06-16 16:41:58 +02:00
⚠️ **This is the `README` file for the [`2.x`](https://github.com/getformwork/formwork/tree/2.x) branch, currently in development and NOT STABLE.**
👉 **See the [`1.x`](https://github.com/getformwork/formwork/tree/1.x) branch for the latest stable version.**
2018-07-10 17:26:32 +02:00
2018-06-16 16:41:58 +02:00
## Features
- ⚡️ Lightweight
- 🗄 No database required!
- 📦 Easy to [install](#installing)
- ✨ Out-of-the-box Administration Panel
2018-06-16 16:41:58 +02:00
2024-10-27 16:18:18 +01:00
![](site/pages/index/formwork.png)
2018-07-10 17:26:32 +02:00
## Requirements
2024-11-23 18:26:31 +01:00
- PHP **8.3** or higher
2021-07-22 15:43:36 +02:00
- PHP extensions `dom`, `fileinfo`, `gd`, `mbstring`, `openssl` and `zip`
2019-03-20 12:19:31 +01:00
## Installing
### From GitHub releases
2019-05-13 13:03:58 +02:00
You can download a ready-to-use `.zip` archive from [GitHub releases page](https://github.com/getformwork/formwork/releases) and just extract it in the webroot of your server.
2019-03-20 12:19:31 +01:00
### With Composer
If you prefer to install the latest stable release of Formwork with [Composer](https://getcomposer.org/) you can use this command:
2024-01-02 15:31:07 +01:00
```shell
composer create-project getformwork/formwork
2019-03-20 12:19:31 +01:00
```
Composer will create a `formwork` folder with a fresh ready-to-use Formwork installation.
2024-10-05 20:18:07 +02:00
To use the administration panel you need to build the [assets](#building-administration-panel-assets-with-yarn).
2019-03-20 12:19:31 +01:00
### Cloning from GitHub
If you want to get the currently worked master version, you can clone the GitHub repository and then install the dependencies with Composer.
1. Clone the repository in your webroot:
2024-01-02 15:31:07 +01:00
```shell
git clone https://github.com/getformwork/formwork.git
2019-03-20 12:19:31 +01:00
```
2. Navigate to `formwork` folder and install the dependencies:
2024-01-02 15:31:07 +01:00
```shell
cd formwork
composer install
```
2024-10-05 20:18:07 +02:00
3. Build the administration panel [assets](#building-administration-panel-assets-with-yarn).
### Building administration panel assets with Yarn
After installing with Composer or cloning from GitHub, you need to build the panel assets with [Yarn](https://yarnpkg.com/) by running the following commands:
```shell
cd panel
yarn install
yarn build
```
2024-01-02 15:31:07 +01:00
## Running Formwork server
You can test Formwork right away with the `serve` command, a customized wrapper of the [PHP Built-in web server](https://www.php.net/manual/en/features.commandline.webserver.php).
> [!IMPORTANT]
> As with PHP CLI web server, Formwork server is intended for **testing purposes** and not for production environments.
Navigate to the `formwork` folder and run the following command:
```shell
php bin/serve
2019-03-20 12:19:31 +01:00
```
2024-01-02 15:31:07 +01:00
If you prefer you can run the Formwork server through Composer:
```shell
composer serve
2019-03-20 12:19:31 +01:00
```