A light self-hosted alternative to Straw Poll.
Clone the repository:
mkdir db && touch db/polls.db && composer installEnable the dba extension in php.ini:
extension=dba
Rename config/app.example.php to config/app.php.
Configure app_url to the root url of Poll Verlaine.
Sample configuration for nginx:
root /path/to/PollVerlaine/webroot; # The webroot directory contains all publicly exposed files.
location /
{
try_files $uri /index.php;
}See API.md.