├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── conf ├── .env.production.sample ├── cron ├── glitchsoc-sidekiq.service ├── glitchsoc-streaming.service ├── glitchsoc-web.service └── nginx.conf ├── doc ├── ADMIN.md ├── ADMIN_fr.md ├── DESCRIPTION.md ├── DESCRIPTION_fr.md ├── PRE_INSTALL.md └── PRE_INSTALL_fr.md ├── manifest.toml ├── scripts ├── _common.sh ├── backup ├── install ├── remove ├── restore └── upgrade └── tests.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/README.md -------------------------------------------------------------------------------- /conf/.env.production.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/conf/.env.production.sample -------------------------------------------------------------------------------- /conf/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/conf/cron -------------------------------------------------------------------------------- /conf/glitchsoc-sidekiq.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/conf/glitchsoc-sidekiq.service -------------------------------------------------------------------------------- /conf/glitchsoc-streaming.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/conf/glitchsoc-streaming.service -------------------------------------------------------------------------------- /conf/glitchsoc-web.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/conf/glitchsoc-web.service -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /doc/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/doc/ADMIN.md -------------------------------------------------------------------------------- /doc/ADMIN_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/doc/ADMIN_fr.md -------------------------------------------------------------------------------- /doc/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/doc/DESCRIPTION.md -------------------------------------------------------------------------------- /doc/DESCRIPTION_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/doc/DESCRIPTION_fr.md -------------------------------------------------------------------------------- /doc/PRE_INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/doc/PRE_INSTALL.md -------------------------------------------------------------------------------- /doc/PRE_INSTALL_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/doc/PRE_INSTALL_fr.md -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/manifest.toml -------------------------------------------------------------------------------- /scripts/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/scripts/_common.sh -------------------------------------------------------------------------------- /scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/scripts/backup -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/scripts/remove -------------------------------------------------------------------------------- /scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/scripts/restore -------------------------------------------------------------------------------- /scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/scripts/upgrade -------------------------------------------------------------------------------- /tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/glitchsoc_ynh/HEAD/tests.toml --------------------------------------------------------------------------------