1
0
Fork 0
A web application to manage political party
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Alex Kotov 88e5dd91b7
Add gem "pry-doc"
2018-12-07 19:44:42 +05:00
app Use Telegram Bot API client 2018-12-07 19:32:34 +05:00
bin Revert "Remove binstubs" 2018-11-23 00:53:09 +05:00
config Add Telegram Bot API client 2018-12-07 19:23:19 +05:00
db Add model TelegramChat 2018-12-07 08:14:14 +05:00
factories Add model TelegramChat 2018-12-07 08:14:14 +05:00
features Rename MembershipApplication to MembershipApp 2018-12-07 00:37:45 +05:00
fixtures Add fixtures 2018-11-30 08:20:12 +05:00
lib Remove code which does not work 2018-12-07 08:22:52 +05:00
log Initialize Rails application 2018-11-23 00:33:08 +05:00
public Remove old content 2018-12-05 23:08:07 +05:00
script Install Cucumber 2018-11-30 12:26:46 +05:00
spec Add model TelegramChat 2018-12-07 08:14:14 +05:00
storage Initialize Rails application 2018-11-23 00:33:08 +05:00
tmp Initialize Rails application 2018-11-23 00:33:08 +05:00
vendor Initialize Rails application 2018-11-23 00:33:08 +05:00
.gitignore Add YARD 2018-12-03 17:51:04 +05:00
.rubocop.yml Exclude templates from RuboCop 2018-12-07 05:15:41 +05:00
.ruby-gemset Some fixes 2018-11-23 00:35:04 +05:00
.ruby-version Add newline 2018-11-23 00:51:18 +05:00
.simplecov Reorder code 2018-12-01 16:14:05 +05:00
.travis.yml Fix CI build 2018-12-07 19:37:43 +05:00
.yardopts Add YARD 2018-12-03 17:51:04 +05:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-12-04 05:04:56 +05:00
Capfile Remove unnecessary comments 2018-12-06 00:47:58 +05:00
Gemfile Add gem "pry-doc" 2018-12-07 19:44:42 +05:00
Gemfile.lock Add gem "pry-doc" 2018-12-07 19:44:42 +05:00
LICENSE Add license 2018-11-29 17:49:45 +05:00
README.md Add example systemd services 2018-12-07 18:53:10 +05:00
Rakefile Use Brakeman (closes #11) 2018-12-05 04:42:05 +05:00
config.ru Add frozen string literal comments 2018-11-23 00:58:35 +05:00
package-lock.json Install Viewer.js 2018-12-02 18:20:22 +05:00
package.json Install Viewer.js 2018-12-02 18:20:22 +05:00

README.md

Partynest

Build Status Coverage Status Maintainability Test Coverage Inline docs

A web application to manage political party members and supporters.

Table of contents

Deploy

Tested with Ubuntu Server 18.04 LTS.

System packages

  • build-essential
  • bundler
  • liblzma-dev
  • libpq-dev
  • nodejs
  • npm
  • patch
  • ruby
  • ruby-dev
  • rubygems-integration
  • zlib1g-dev

Steps

  • Create directory /var/www/partynest/ writable by deploy user
  • Copy file config/master.key to /var/www/partynest/shared/config/
  • Create PostgreSQL role partynest with password password
  • Create PostgreSQL database partynest_production owned by partynest

Example systemd services

Replace user with the name of user and group with the name of group which you want an application to run as.

Web server

[Unit]
After=syslog.target network.target
Description=Partynest web server

[Service]
ExecStart=/usr/bin/bundle exec rails server --environment production
Group=group
Restart=on-failure
RestartSec=1
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=partynest-web
Type=simple
User=user
WorkingDirectory=/var/www/partynest/current

[Install]
WantedBy=multi-user.target

Job processing

[Unit]
After=syslog.target network.target
Description=Partynest job processing

[Service]
ExecStart=/usr/bin/bundle exec sidekiq --environment production
Group=group
Restart=on-failure
RestartSec=1
StandardOutput=syslog
StandardError=syslog
SyslogIdentifier=partynest-worker
Type=simple
User=user
WorkingDirectory=/var/www/partynest/current

[Install]
WantedBy=multi-user.target