1
0
mirror of https://git.cant.at/Madeorsk/PollVerlaine synced 2024-11-22 11:54:31 +01:00
PollVerlaine/README.md

29 lines
402 B
Markdown
Raw Normal View History

2018-08-12 14:20:32 +02:00
# PollVerlaine
A small alternative to Straw Poll.
## Installation
Clone the repository :
```sh
mkdir db && touch db/polls.db && composer install
```
2018-08-13 13:50:31 +02:00
Uncomment the `dba` extention in `php.ini` :
```
extension=dba
```
Rename `config/app.example.php` to `config/app.php`.
Sample configuration for nginx :
```nginx
location /
{
try_files $uri /index.php =404;
}
```
## API
2018-08-13 13:50:31 +02:00
See [API.md](API.md).