PollVerlaine/README.md

34 lines
466 B
Markdown
Raw Normal View History

2018-08-12 14:20:32 +02:00
# PollVerlaine
A small alternative to Straw Poll.
## Installation
2018-08-16 14:16:50 +02:00
Clone the repository:
```sh
mkdir db && touch db/polls.db && composer install
```
2018-08-16 14:16:50 +02:00
Enable the `dba` extension in `php.ini`:
```
extension=dba
```
2018-08-16 14:16:50 +02:00
### Configuration
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:
```nginx
location /
{
2018-08-16 14:16:50 +02:00
try_files $uri /index.php;
}
```
## API
2018-08-13 13:50:31 +02:00
2018-08-16 14:16:50 +02:00
See [API.md](API.md).