mirror of
https://git.cant.at/Madeorsk/PollVerlaine
synced 2024-11-22 01:14:32 +01:00
A light self-hosted alternative to Straw Poll.
Madeorsk
7b0a619b0e
+ Now possible to allow multiple choices; * Add partial settings support; * Fixed and moved some redirections to appropriate pages; * CSS adjustments. |
||
---|---|---|
config | ||
models | ||
static | ||
views | ||
.gitignore | ||
API.md | ||
composer.json | ||
index.php | ||
LICENSE | ||
README.md |
PollVerlaine
A small alternative to Straw Poll.
Installation
Clone the repository :
mkdir db && touch db/polls.db && composer install
Uncomment the dba
extention in php.ini
:
extension=dba
Rename config/app.example.php
to config/app.php
.
Sample configuration for nginx :
location /
{
try_files $uri /index.php =404;
}
API
See API.md.