Getting started
This article outlines the basic steps to get started with Aidbox Forms
You can try the Aidbox Forms module, edit test forms, create new ones, see how the data will be saved to the database and extracted, for this you need to run the Aidbox Forms in Aidbox Sandbox. But all your changes will not be saved. To develop forms, you need to run the Aidbox Forms locally.
- Create a license: product type - Aidbox, licence type - standard or development, hosting - in Cloud (for free)
- Configure your project: select Aidbox SDC Forms
- Go to Aidbox portal, find your license in the "Personal project licenses" list. Click on your new license and navigate to the "URL" link in the "Hosting" box.
- Press the button
Forms
in the Aidbox console in browser - Play with forms
This is only a sandbox with test forms, all your changes are not saved
- Create a license: product type - Aidbox, licence type - development, hosting - self-hosted
- Copy & save a license key
- 1.You need to have the following software installed:
- docker
- docker-compose
- text editor with color highlighting (recommended VSCode editor with
zen-lsp
plugin) - any modern web-browser
- git
- make
- npm
2. Run Aidbox locally
4. Configure project with a license. You need to create
.env file
in the root of repository (by copying from .env.tpl) and update AIDBOX_LICENSE with the generated license key that you saved5. Run
make init
to initialize project6. Run in the terminal
make up
in the root of repository7. Open Aidbox console in browser http://localhost:8080/ , using login / password - admin / password
9. To finish development you can run
make down
to shutdown all services.You can edit zen files in
zrc
directory and they will be automatically reloadedYou have two options how to design form
Last modified 9mo ago