https://github.com/citizenlabsgr/ballotbuddies
Help friends hold each other accountable to vote in every election.
https://github.com/citizenlabsgr/ballotbuddies
bootstrap django email hacktoberfest postgresql python
Last synced: about 1 year ago
JSON representation
Help friends hold each other accountable to vote in every election.
- Host: GitHub
- URL: https://github.com/citizenlabsgr/ballotbuddies
- Owner: citizenlabsgr
- License: gpl-3.0
- Created: 2021-10-14T18:16:07.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-11-04T17:54:16.000Z (over 1 year ago)
- Last Synced: 2025-04-12T23:38:26.628Z (about 1 year ago)
- Topics: bootstrap, django, email, hacktoberfest, postgresql, python
- Language: Python
- Homepage: https://app.michiganelections.io
- Size: 1.4 MB
- Stars: 7
- Watchers: 5
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Michigan Ballot Buddies
An app to help friends hold each other accountable to vote in every election.
[](https://circleci.com/gh/citizenlabsgr/ballotbuddies)
[](https://coveralls.io/github/citizenlabsgr/ballotbuddies)
# Setup
## Requirements
The following must be installed on your system:
- Make
- Python
- Poetry
- PostgreSQL
To confirm the correct versions are installed:
```
$ make doctor
```
## Setup
Create a database:
```
$ createdb ballotbuddies_dev
```
Install project dependencies:
```
$ make install
```
Run migrations and generate test data:
```
$ make data
```
## Development
Run the application:
```
$ make run
```
See the [contributor guide](CONTRIBUTING.md) for additional details.