You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-14
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,16 @@
1
-
# FlexForm - Lightweight Form Server
1
+
# PHPForm - Lightweight Form Server
2
2
3
-
Welcome to FlexForm, a fully open-source, headless form server designed with simplicity, efficiency, and privacy in mind. Built to be easily installed on any budget-friendly hosting solution or free cloud tiers, FlexForm is the perfect choice for developers and businesses looking for a reliable and GDPR-compliant form management solution.
3
+
Welcome to PHPForm, a fully open-source, headless form server designed with simplicity, efficiency, and privacy in mind. Built to be easily installed on any budget-friendly hosting solution or free cloud tiers, PHPForm is the perfect choice for developers and businesses looking for a reliable and GDPR-compliant form management solution.
4
4
5
5
<imgsrc="./public/images/screen.png"width="100%">
6
6
7
7
# Features
8
8
9
-
-**Headless Architecture**: FlexForm is built as a headless server, offering flexibility and ease of integration with various frontend systems.
9
+
-**Headless Architecture**: PHPForm is built as a headless server, offering flexibility and ease of integration with various frontend systems.
10
10
-**Robust Admin Panel**: Manage your forms with ease using our user-friendly admin panel, designed for efficient and intuitive form management.
11
11
-**Cost-Effective**: Designed to run smoothly on inexpensive hosting or free cloud services, reducing your operational costs.
12
-
-**GDPR Compliant**: We prioritize your data privacy. FlexForm ensures that all your data remains yours, complying fully with GDPR regulations.
13
-
-**Open Source**: Dive into the code, customize, and contribute! Our community-driven approach means FlexForm is continually evolving.
12
+
-**GDPR Compliant**: We prioritize your data privacy. PHPForm ensures that all your data remains yours, complying fully with GDPR regulations.
13
+
-**Open Source**: Dive into the code, customize, and contribute! Our community-driven approach means PHPForm is continually evolving.
14
14
15
15
# Requirements
16
16
### PHP Version
@@ -30,7 +30,7 @@ Welcome to FlexForm, a fully open-source, headless form server designed with sim
30
30
31
31
# License
32
32
33
-
FlexForm is released under MIT, ensuring it remains free and open for use and modification.
33
+
PHPForm is released under MIT, ensuring it remains free and open for use and modification.
34
34
35
35
# Getting Started
36
36
@@ -43,17 +43,17 @@ FlexForm is released under MIT, ensuring it remains free and open for use and mo
43
43
44
44
45
45
## Running locally with docker
46
-
Use the latest [image from docker hub](https://hub.docker.com/r/flexform/flexform-server) to run it locally:
46
+
Use the latest [image from docker hub](https://hub.docker.com/r/phpform/phpform-server) to run it locally:
47
47
```bash
48
-
docker run --name flexform -d -p 9000:9000 flexform/flexform-server:0.1
48
+
docker run --name phpform -d -p 9000:9000 phpform/phpform-server:0.1
49
49
```
50
50
Copy environment file and adjust it to your needs:
51
51
```bash
52
52
cp .env.prod .env
53
53
```
54
54
Run DB migrations from container
55
55
```bash
56
-
docker exec -it flexform bash
56
+
docker exec -it phpform bash
57
57
php bin/console doctrine:migrations:diff
58
58
php bin/console doctrine:migrations:migrate
59
59
```
@@ -80,13 +80,13 @@ php -S localhost:8000 -t public
80
80
```
81
81
82
82
## Deploying on shared hosting
83
-
Build the project on your local machine or [download prebuild release](https://flexform.nyc3.cdn.digitaloceanspaces.com/flexform-server-latest.zip).
83
+
Build the project on your local machine or [download prebuild release](https://phpform.nyc3.cdn.digitaloceanspaces.com/phpform-server-latest.zip).
84
84
Upload the files to your shared hosting.
85
85
Make sure you make "public" folder as your main folder.
86
86
87
87
## Deploying on cloud hosting
88
-
You can deploy FlexForm on any cloud hosting provider that supports PHP 8.2 or higher.
89
-
Also you can use [FlexForm Docker Image](https://hub.docker.com/r/flexform/flexform-server) to deploy FlexForm on any cloud hosting provider that supports docker.
88
+
You can deploy PHPForm on any cloud hosting provider that supports PHP 8.2 or higher.
89
+
Also you can use [PHPForm Docker Image](https://hub.docker.com/r/phpform/phpform-server) to deploy PHPForm on any cloud hosting provider that supports docker.
90
90
91
91
Make sure you:
92
92
- Set the environment variable `APP_ENV` to `prod`
0 commit comments