27 lines
343 B
Markdown
27 lines
343 B
Markdown
![]() |
# formbuilder
|
||
|
|
||
|
Set up apache
|
||
|
|
||
|
```
|
||
|
a2enmod proxy proxy_http headers proxy_wstunnel
|
||
|
|
||
|
# Add to apache config:
|
||
|
<Location />
|
||
|
ProxyPass http://127.0.0.1:8080/
|
||
|
</Location>
|
||
|
```
|
||
|
|
||
|
Install
|
||
|
|
||
|
```
|
||
|
git clone https://github.com/kevinchappell/formBuilder
|
||
|
cd formBuilder/
|
||
|
npm install
|
||
|
npm start
|
||
|
```
|
||
|
|
||
|
Another way.
|
||
|
```
|
||
|
npm i --save formBuilder
|
||
|
```
|