2018-08-12 14:20:32 +02:00
|
|
|
# PollVerlaine
|
|
|
|
|
2018-08-16 14:24:28 +02:00
|
|
|
A light self-hosted alternative to Straw Poll.
|
2018-08-13 13:02:09 +02:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2018-08-16 14:16:50 +02:00
|
|
|
Clone the repository:
|
2018-08-13 13:02:09 +02:00
|
|
|
```sh
|
|
|
|
mkdir db && touch db/polls.db && composer install
|
|
|
|
```
|
|
|
|
|
2018-08-16 14:16:50 +02:00
|
|
|
Enable the `dba` extension in `php.ini`:
|
2018-08-13 13:02:09 +02:00
|
|
|
```
|
|
|
|
extension=dba
|
|
|
|
```
|
|
|
|
|
2018-08-16 14:16:50 +02:00
|
|
|
### Configuration
|
|
|
|
|
2018-08-13 13:02:09 +02:00
|
|
|
Rename `config/app.example.php` to `config/app.php`.
|
|
|
|
|
2018-08-16 14:16:50 +02:00
|
|
|
Configure `app_url` to the root url of Poll Verlaine.
|
|
|
|
|
|
|
|
Sample configuration for nginx:
|
2018-08-13 13:02:09 +02:00
|
|
|
```nginx
|
|
|
|
location /
|
|
|
|
{
|
2018-08-16 14:16:50 +02:00
|
|
|
try_files $uri /index.php;
|
2018-08-13 13:02:09 +02:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## API
|
2018-08-13 13:50:31 +02:00
|
|
|
|
2018-08-16 14:16:50 +02:00
|
|
|
See [API.md](API.md).
|