Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lucasmagnum/django-tip-02
- Owner: LucasMagnum
- License: mit
- Created: 2017-08-14T13:08:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-26T00:50:01.000Z (over 3 years ago)
- Last Synced: 2023-08-03T03:50:39.389Z (over 1 year ago)
- Topics: django, example-project, portfolio, python, tutorial
- Language: Python
- Homepage: https://medium.com/@lucasmagnum/djangotip-select-prefetch-related-e76b683aa457
- Size: 134 KB
- Stars: 32
- Watchers: 3
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
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)