Kurulum Talimatları
Veritabanı Sunucusunu Yükle, MongoDB’yi yüklemek için aşağıdaki komutu kullanın
sudo apt-get update; sudo apt install -y mongodb MongoDB will be started automatically once installation is completed.
Veritabanı sunucusu yüklendikten sonra, NPM yüklemek için aşağıdaki komutu kullanın
sudo apt-get install npm
Veritabanı sunucusu yüklendikten sonra, Nodejs yüklemek için aşağıdaki komutu kullanın
sudo apt-get install nodejs
Ardından, aşağıdaki komutu kullanarak repoyu klonlayın
git clone <a href="https://github.com/formio/formio">https://github.com/formio/formio</a>
Klon tamamlandıktan sonra, sunucuyu çalıştırmak için aşağıdaki komutları kullanın
cd formio <br></br> sudo npm install<br></br> npm start
Yapıldığında, tarayıcınızda aşağıdaki adreste çalışan bir çalıştırma formu.io yönetimi uygulamanız olacaktır.
<a href="https://github.com/formio/formio">http://</a>localhost:3001
Tebrikler başarılı bir şekilde var. Form.io
Docker kullanarak kurulum talimatları
Docker görüntüleri, aşağı çekmek için Docker Hub’da bulunur, aşağıdaki Docker komutunu çalıştırın.
docker pull formio/formio-enterprise
Tüm Docker örneklerini içerecek bir Docker ağı oluşturun.
docker network create formio
Mongo örneğini oluşturun.
mkdir ~/opt/mongodb
# Double check permissions on /opt/mongodb
docker run -itd \
--name formio-mongo \
--network formio \
--volume ~/opt/mongodb:/data/db \
--restart unless-stopped \
mongo
Formio-Enterprise örneğini başlatın.
docker run -itd \
-e "ADMIN_EMAIL=<span id="cloakd599c59a1669d71b635ca8704350f38c">This email address is being protected from spambots. You need JavaScript enabled to view it.</span><script type="text/javascript">document.getElementById('cloakd599c59a1669d71b635ca8704350f38c').innerHTML='';var prefix='ma'+'il'+'to';var path='hr'+'ef'+'=';var addyd599c59a1669d71b635ca8704350f38c='admin'+'@';addyd599c59a1669d71b635ca8704350f38c=addyd599c59a1669d71b635ca8704350f38c+'example'+'.'+'com';var addy_textd599c59a1669d71b635ca8704350f38c='admin'+'@'+'example'+'.'+'com';document.getElementById('cloakd599c59a1669d71b635ca8704350f38c').innerHTML+='<a '+path+'\''+prefix+':'+addyd599c59a1669d71b635ca8704350f38c+'\'>'+addy_textd599c59a1669d71b635ca8704350f38c+'<\/a>';</script>" \
-e "ADMIN_PASS=CHANGEME" \
-e "PRIMARY=true" \
-e "LICENSE=YOURLICENSE" \
-e "PORTAL_SECRET=CHANGEME" \
-e "JWT_SECRET=CHANGEME" \
-e "DB_SECRET=CHANGEME" \
--restart unless-stopped \
--name formio-server \
--network formio \
--link formio-mongo:mongo \
--restart unless-stopped \
-p 3000:80 \
formio/formio-enterprise;