Strongly Worded is a simple web application which lets you create customizable form letters which signees can fill out and turn into PDF for printing and mailing. Built as an alternative to electronic petition sites, Strongly Worded can be used to facilitate civic engagement by mail.
Requires PHP >= 5.6.
- Clone this repo:
git clone https://github.com/greatislander/stronglyworded.git. - Run
composer installfrom within it (maybe you need to install Composer first). - Edit
config.ymlto suit your needs. - Replace the contents of
content/body.mdwith your letter. - Replace the contents of
content/intro.mdwith an introduction explaining your letter to visitors. - Commit your changes:
git commit -am "Update configuration and content."(optional). - Upload the folder's contents (including
vendor) to the webroot of a LAMP or LEMP server.
- Clone this repo:
git clone https://github.com/greatislander/stronglyworded.git. - Edit
config.ymlto suit your needs. - Replace the contents of
content/body.mdwith your letter. - Replace the contents of
content/intro.mdwith an introduction explaining your letter to visitors. - Commit your changes:
git commit -am "Update configuration and content.". - Log in to your Heroku account (maybe you need to install the Heroku CLI first):
heroku login. - Create an app on Heroku:
heroku create. - Deploy your code:
git push heroku master. - Ensure that at least one instance of your app is running:
heroku ps:scale web=1. - Open your app:
heroku open.