Remove code climate issue count badge

This commit is contained in:
Maciej Szlosarczyk 2018-06-14 09:52:04 +03:00
parent 157b383738
commit 2f44dac144
No known key found for this signature in database
GPG key ID: 41D62D42D3B0D765

View file

@ -2,7 +2,6 @@ Domain Registry
=============== ===============
[![Build Status](https://travis-ci.org/internetee/registry.svg?branch=master)](https://travis-ci.org/internetee/registry) [![Build Status](https://travis-ci.org/internetee/registry.svg?branch=master)](https://travis-ci.org/internetee/registry)
[![Code Climate](https://codeclimate.com/github/internetee/registry/badges/gpa.svg)](https://codeclimate.com/github/internetee/registry) [![Code Climate](https://codeclimate.com/github/internetee/registry/badges/gpa.svg)](https://codeclimate.com/github/internetee/registry)
[![Issue Count](https://codeclimate.com/github/internetee/registry/badges/issue_count.svg)](https://codeclimate.com/github/internetee/registry)
[![Test Coverage](https://codeclimate.com/github/internetee/registry/badges/coverage.svg)](https://codeclimate.com/github/internetee/registry/coverage) [![Test Coverage](https://codeclimate.com/github/internetee/registry/badges/coverage.svg)](https://codeclimate.com/github/internetee/registry/coverage)
[![Documentation Status](https://readthedocs.org/projects/eeregistry/badge/?version=latest)](http://docs.internet.ee/en/latest/?badge=latest) [![Documentation Status](https://readthedocs.org/projects/eeregistry/badge/?version=latest)](http://docs.internet.ee/en/latest/?badge=latest)
@ -31,7 +30,7 @@ Documentation
Installation Installation
------------ ------------
### Registry app ### Registry app
Registry based on Rails 4 installation (rbenv install is under Debian build doc) Registry based on Rails 4 installation (rbenv install is under Debian build doc)
@ -57,7 +56,7 @@ Manual demo install and database setup:
tar -xzvf mod_epp-1.10.tar.gz tar -xzvf mod_epp-1.10.tar.gz
cd mod_epp-1.10 cd mod_epp-1.10
Patch mod_epp for Rack. Beacause Rack multipart parser expects specifically Patch mod_epp for Rack. Beacause Rack multipart parser expects specifically
formatted content boundaries, the mod_epp needs to be modified before building: formatted content boundaries, the mod_epp needs to be modified before building:
wget https://github.com/internetee/registry/raw/master/doc/patches/mod_epp_1.10-rack-friendly.patch wget https://github.com/internetee/registry/raw/master/doc/patches/mod_epp_1.10-rack-friendly.patch
@ -136,7 +135,7 @@ For Apache, registry admin goes to port 443 in production, /etc/apache2/sites-en
</VirtualHost> </VirtualHost>
``` ```
Registrar configuration (/etc/apache2/sites-enabled/registrar.conf) is as follows: Registrar configuration (/etc/apache2/sites-enabled/registrar.conf) is as follows:
``` ```
<VirtualHost *:443> <VirtualHost *:443>
ServerName your-registrar-domain ServerName your-registrar-domain
@ -179,7 +178,7 @@ Registrar configuration (/etc/apache2/sites-enabled/registrar.conf) is as follow
# for Apache verison 2.4 or newer # for Apache verison 2.4 or newer
# Require all granted # Require all granted
Options -MultiViews Options -MultiViews
</Directory> </Directory>
@ -220,7 +219,7 @@ Registrar configuration (/etc/apache2/sites-enabled/registrar.conf) is as follow
</VirtualHost> </VirtualHost>
``` ```
Registrant configuration (/etc/apache2/sites-enabled/registrant.conf) is as follows: Registrant configuration (/etc/apache2/sites-enabled/registrant.conf) is as follows:
``` ```
<VirtualHost *:443> <VirtualHost *:443>
ServerName your-registrant-domain ServerName your-registrant-domain
@ -263,7 +262,7 @@ Registrant configuration (/etc/apache2/sites-enabled/registrant.conf) is as foll
# for Apache verison 2.4 or newer # for Apache verison 2.4 or newer
# Require all granted # Require all granted
Options -MultiViews Options -MultiViews
</Directory> </Directory>
@ -271,11 +270,11 @@ Registrant configuration (/etc/apache2/sites-enabled/registrant.conf) is as foll
Allow from none Allow from none
Deny from all Deny from all
</Location> </Location>
<Location /registrant> <Location /registrant>
Allow from all Allow from all
</Location> </Location>
<Location /assets> <Location /assets>
Allow from all Allow from all
</Location> </Location>
@ -342,8 +341,8 @@ For Apache, REPP goes to port 443 in production, /etc/apache2/sites-enabled/repp
</VirtualHost> </VirtualHost>
``` ```
For Apache, epp goes to port 700. For Apache, epp goes to port 700.
Be sure to update paths to match your system configuration. Be sure to update paths to match your system configuration.
/etc/apache2/sites-enabled/epp.conf short example: /etc/apache2/sites-enabled/epp.conf short example:
```apache ```apache
<IfModule mod_ssl.c> <IfModule mod_ssl.c>
@ -405,7 +404,7 @@ Be sure to update paths to match your system configuration.
EPPSessionRoot /proxy/session EPPSessionRoot /proxy/session
EPPErrorRoot /proxy/error EPPErrorRoot /proxy/error
EPPRawFrame raw_frame EPPRawFrame raw_frame
ProxyPass /proxy/ http://localhost:8080/epp/ ProxyPass /proxy/ http://localhost:8080/epp/
EPPAuthURI implicit EPPAuthURI implicit
@ -421,7 +420,7 @@ Enable epp_ssl and restart apache
Now you should see registry admin at https://your-domain Now you should see registry admin at https://your-domain
All registry demo data can be found at: All registry demo data can be found at:
db/seeds.rb db/seeds.rb
@ -464,4 +463,3 @@ Please follow EPP web client readme:
Please follow WHOIS server readme: Please follow WHOIS server readme:
https://github.com/internetee/whois https://github.com/internetee/whois