Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

#DjangoTip 02
https://github.com/lucasmagnum/django-tip-02

django example-project portfolio python tutorial

Last synced: about 3 hours ago
JSON representation

#DjangoTip 02

Awesome Lists containing this project

README

        

#DjangoTip 02
==================

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

This is just a sample app used in [Select & Prefetch related](https://medium.com/@lucasmagnum/djangotip-select-prefetch-related-e76b683aa457).

### 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 - [Select & Prefetch related](https://medium.com/@lucasmagnum/djangotip-select-prefetch-related-e76b683aa457)