Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit 3a061b1

Browse files
author
Nir Galon
authored
Final things before release (#71)
* Add angular2-logger package * Fix codacy errors * Add codacy badge * Add maintenance badge * Fix github releases badge * Remove angular2-logger package * Update links
1 parent 8afd134 commit 3a061b1

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# An Angular - Django Project Seed
22

3-
[![license][license-image]][license-url] [![Build Status][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![Dependency Status][dependencyci-image]][dependencyci-url] [![Donate][donate-image]][donate-url]
3+
[![license][license-image]][license-url] [![GitHub release][github-image]][github-url] [![Build Status][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![Dependency Status][dependencyci-image]][dependencyci-url] [![Codacy Badge][codacy-image]][codacy-url] [![Maintenance][maintenance-image]][maintenance-url] [![Donate][donate-image]][donate-url]
44

55
This repo is a production ready seed project. The app shows a list of users.
66

@@ -123,12 +123,18 @@ The backups are saved at `/var/backups/postgres` at the host machine via a share
123123
Just fork and do a pull request (;
124124

125125
[license-image]: https://img.shields.io/badge/license-ISC-blue.svg
126-
[license-url]: https://github.com/nirgn975/Angular-Django-cluster/blob/master/LICENSE
127-
[travis-image]: https://travis-ci.org/nirgn975/Angular-Django-cluster.svg?branch=master
128-
[travis-url]: https://travis-ci.org/nirgn975/Angular-Django-cluster
129-
[codecov-image]: https://codecov.io/gh/nirgn975/Angular-Django-cluster/branch/master/graph/badge.svg
130-
[codecov-url]: https://codecov.io/gh/nirgn975/Angular-Django-cluster
131-
[dependencyci-image]: https://dependencyci.com/github/nirgn975/Angular-Django-cluster/badge
132-
[dependencyci-url]: https://dependencyci.com/github/nirgn975/Angular-Django-cluster
126+
[license-url]: https://github.com/nirgn975/Angular-Django-Project-Seed/blob/master/LICENSE
127+
[github-image]: https://img.shields.io/github/release/nirgn975/Angular-Django-Project-Seed.svg
128+
[github-url]: https://github.com/nirgn975/Angular-Django-Project-Seed/releases
129+
[travis-image]: https://travis-ci.org/nirgn975/Angular-Django-Project-Seed.svg?branch=master
130+
[travis-url]: https://travis-ci.org/nirgn975/Angular-Django-Project-Seed
131+
[codecov-image]: https://codecov.io/gh/nirgn975/Angular-Django-Project-Seed/branch/master/graph/badge.svg
132+
[codecov-url]: https://codecov.io/gh/nirgn975/Angular-Django-Project-Seed
133+
[dependencyci-image]: https://dependencyci.com/github/nirgn975/Angular-Django-Project-Seed/badge
134+
[dependencyci-url]: https://dependencyci.com/github/nirgn975/Angular-Django-Project-Seed
135+
[codacy-image]: https://api.codacy.com/project/badge/Grade/b276134fff7f47439a01fc6d85cf2ff9
136+
[codacy-url]: https://www.codacy.com/app/nirgn975/Angular-Django-Project-Seed?utm_source=github.com&utm_medium=referral&utm_content=nirgn975/Angular-Django-Project-Seed&utm_campaign=Badge_Grade
137+
[maintenance-image]: https://img.shields.io/maintenance/yes/2017.svg
138+
[maintenance-url]: https://github.com/nirgn975
133139
[donate-image]: https://img.shields.io/badge/Donate-PayPal-lightgrey.svg
134140
[donate-url]: https://www.paypal.me/nirgn/2

server/api/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from rest_framework import status
22
from rest_framework.test import APITestCase
33
from django.contrib.auth.models import User
4-
from requests.auth import HTTPBasicAuth
54

65

76
class UsersApiTestCase(APITestCase):
7+
@classmethod
88
def setUp(self):
99
User.objects.create_superuser('admin', '[email protected]', 'admin12345')
1010

0 commit comments

Comments
 (0)