Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/madeorsk/pollverlaine
- Owner: Madeorsk
- License: agpl-3.0
- Created: 2019-05-04T10:00:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-05-04T10:02:11.000Z (over 5 years ago)
- Last Synced: 2024-11-13T03:29:57.823Z (3 months ago)
- Topics: poll, self-hosted, strawpoll
- Language: PHP
- Homepage: https://poll.aleph.land
- Size: 4.54 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).