https://github.com/runlevel5/formbuilder
An attempt to clone Adobe Acrobat X for web platform
https://github.com/runlevel5/formbuilder
Last synced: about 1 month ago
JSON representation
An attempt to clone Adobe Acrobat X for web platform
- Host: GitHub
- URL: https://github.com/runlevel5/formbuilder
- Owner: runlevel5
- Created: 2012-02-24T05:46:30.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-03-02T05:21:31.000Z (over 14 years ago)
- Last Synced: 2025-01-25T12:28:00.014Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 2.08 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Form Builder
------------
The application takes in a PDF, split PDF pages to many PNGs then you could overlay
template box on images which later can be converted to PDF form with data filled in.
Installation
------------
The application uses RGhost which in turn utilise ghostscript. Make sure you
install binary of ghostscript.
On OSX:
$ brew install ghostscript
On Windows, please download from http://www.ghostscript.com/
Additionally, ImageMagick is required for paperclip gem.
On OSX:
$ brew install imagemagick
On Windows, please download from http://www.imagemagick.org/
All gems can be installed with bundler:
$ bundle install
Bootstrapping
-------------
$ bundle exec rake db:migrate
$ bundle exec rake db:seed
Configuration
-------------
If you place ghostscript binary in non-default path, please make sure you
set `RGhost::Config::GS[:path]` in initializers/rghost.rb
Running the application
-----------------------
Start the server:
$ rails server