Skip to content

Commit

Permalink
Renames app to superlists
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianmo committed Jan 24, 2017
1 parent 6eebe04 commit 0083916
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ before_install:
install:
- pip install -r requirements-test.txt
- pip install coveralls
- python manage.py collectstatic --no-input

script:
- python manage.py collectstatic --no-input
- coverage run --source=lists,accounts manage.py test -v 2

after_success:
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# Superlists


[![Build Status](https://travis-ci.org/tgndevs/testing-example.svg?branch=master)](https://travis-ci.org/tgndevs/testing-example)
[![Style Status](https://app.snap-ci.com/tgndevs/testing-example/branch/master/build_image)](https://app.snap-ci.com/tgndevs/testing-example/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/tgndevs/testing-example/badge.svg?branch=master)](https://coveralls.io/github/tgndevs/testing-example?branch=master)
[![Code Climate](https://codeclimate.com/github/tgndevs/testing-example/badges/gpa.svg)](https://codeclimate.com/github/tgndevs/testing-example)
[![Code Health](https://landscape.io/github/tgndevs/testing-example/master/landscape.svg?style=flat)](https://landscape.io/github/tgndevs/testing-example/master)
[![Requirements Status](https://requires.io/github/tgndevs/testing-example/requirements.svg?branch=master)](https://requires.io/github/tgndevs/testing-example/requirements/?branch=master)
[![Build Status](https://travis-ci.org/tgndevs/superlists.svg?branch=master)](https://travis-ci.org/tgndevs/superlists)
[![Style Status](https://app.snap-ci.com/tgndevs/superlists/branch/master/build_image)](https://app.snap-ci.com/tgndevs/superlists/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/tgndevs/superlists/badge.svg?branch=master)](https://coveralls.io/github/tgndevs/superlists?branch=master)
[![Code Climate](https://codeclimate.com/github/tgndevs/superlists/badges/gpa.svg)](https://codeclimate.com/github/tgndevs/superlists)
[![Code Health](https://landscape.io/github/tgndevs/superlists/master/landscape.svg?style=flat)](https://landscape.io/github/tgndevs/superlists/master)
[![Requirements Status](https://requires.io/github/tgndevs/superlists/requirements.svg?branch=master)](https://requires.io/github/tgndevs/superlists/requirements/?branch=master)
[![AUR](https://img.shields.io/aur/license/yaourt.svg)]()

This Django application is for exemplify how important is including testing into your software projects.
This Django application is to exemplify how important is including tests in our software projects.

The application have been copied from [hjwp/book-example](https://github.com/hjwp/book-example). The application is a website where users can create todo's lists and share between them.
The application has been copied from [hjwp/book-example](https://github.com/hjwp/book-example). The application is a website where users can create and share TODO lists.

![Main page](https://raw.githubusercontent.com/tgndevs/testing-example/master/main.png)
![Main page](https://raw.githubusercontent.com/tgndevs/superlists/master/main.png)

- [Slides](https://tgndevs.github.io/testing-example)
- [Online Demo](https://testing-example.herokuapp.com)
- [Slides](https://tgndevs.github.io/superlists)
- [Online Demo](https://superlists-tgndevs.herokuapp.com)

## Authors

Expand Down Expand Up @@ -53,7 +53,7 @@ python3 manage.py runserver 0.0.0.0:8000

# Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/tgndevs/testing-example/issues and https://github.com/tgndevs/testing-example/pulls. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
Bug reports and pull requests are welcome on GitHub at https://github.com/tgndevs/superlists/issues and https://github.com/tgndevs/superlists/pulls. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.


# License
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "testing-example",
"name": "superlists",
"version": "0.0.0",
"license": "MIT",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion superlists/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

ALLOWED_HOSTS = ['localhost', 'testing-example.herokuapp.com']
ALLOWED_HOSTS = ['localhost', 'superlists-tgndevs.herokuapp.com']


# Application definition
Expand Down

0 comments on commit 0083916

Please sign in to comment.