Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/madeorsk/pollverlaine

Mirror of https://git.madeorsk.com/Madeorsk/PollVerlaine
https://github.com/madeorsk/pollverlaine

poll self-hosted strawpoll

Last synced: 16 days ago
JSON representation

Mirror of https://git.madeorsk.com/Madeorsk/PollVerlaine

Awesome Lists containing this project

README

        

# PollVerlaine

A light self-hosted alternative to Straw Poll.

## Installation

Clone the repository:
```sh
mkdir db && touch db/polls.db && composer install
```

Enable the `dba` extension in `php.ini`:
```
extension=dba
```

### Configuration

Rename `config/app.example.php` to `config/app.php`.

Configure `app_url` to the root url of Poll Verlaine.

Sample configuration for nginx:
```nginx
root /path/to/PollVerlaine/webroot; # The webroot directory contains all publicly exposed files.
location /
{
try_files $uri /index.php;
}
```

## API

See [API.md](API.md).