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
- Host: GitHub
- URL: https://github.com/lucasmagnum/django-tip-01
- Owner: LucasMagnum
- License: mit
- Created: 2017-08-03T12:52:49.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-14T12:23:59.000Z (almost 9 years ago)
- Last Synced: 2025-03-11T06:35:54.571Z (over 1 year ago)
- Topics: django, example-project, portfolio, python, tutorial
- Language: Python
- Homepage: https://medium.com/@lucasmagnum/djangotip-playing-with-querysets-ad2ae9fecf73
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- 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 01
==================
[](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)