An open API service indexing awesome lists of open source software.

https://github.com/lucasmagnum/django-tip-01

#DjangoTIP 01
https://github.com/lucasmagnum/django-tip-01

django example-project portfolio python tutorial

Last synced: 2 months ago
JSON representation

#DjangoTIP 01

Awesome Lists containing this project

README

          

#DjangoTip 01
==================

[![CircleCI](https://circleci.com/gh/LucasMagnum/django-tip-01.svg?style=shield)](https://circleci.com/gh/LucasMagnum/django-tip-01)

This is just a sample app used in [Playing with Querysets](https://medium.com/@lucasmagnum/djangotip-playing-with-querysets-ad2ae9fecf73).

### How to use it

Basically, we have to follow the steps bellow:

1. Clone this repository
2. Install all dependencies (see [setup](#1-setup))
3. Execute all tests (see [tests](#2-running-tests))

### Table of Contents

* [1. Setup](#1-setup)
* [2. Running tests](#2-running-tests)
* [Useful links](#useful-links)

---

## Development

### 1. Setup

To properly run this project, we should install the dependencies:

```bash
make setup
```

### 2. Running tests

Run the command bellow to run the tests

```bash
make tests
```

### Useful links

1 - [Playing with Querysets](https://medium.com/@lucasmagnum/djangotip-playing-with-querysets-ad2ae9fecf73)