Skip to content

Commit 7b9ce06

Browse files
committed
added tree to the directory
1 parent da29096 commit 7b9ce06

1 file changed

Lines changed: 34 additions & 2 deletions

File tree

readme.md

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Find the original repo for project structure and names in the [oficial repo](htt
77
## Pre-requisites
88
It make use of Pipenv a wonderful tool that aims to bring the best of all packaging worlds to the Python world. [Extracted from the oficial documentation](https://pipenv.readthedocs.io/en/latest/).
99

10-
Installation is simple as:
10+
Installation with brew is simple as:
1111
```sh
1212
brew install pipenv
1313
```
@@ -16,7 +16,7 @@ brew install pipenv
1616
Give a start to the [Pipenv repo](https://github.com/pypa/pipenv/) and also you can say [thanks](https://saythanks.io/to/kennethreitz) to kennethreitz for the awesome job in this wonderful tool.
1717

1818
## Installation
19-
Just run:
19+
Run:
2020
```sh
2121
pipenv install
2222
```
@@ -50,7 +50,39 @@ python3 manage.py runserver
5050
```
5151

5252
## Base
53+
Tree of directory
54+
```sh
55+
tree
56+
```
5357

58+
.
59+
├── Pipfile
60+
├── Pipfile.lock
61+
├── apiconfig
62+
│ ├── __init__.py
63+
│ ├── settings.py
64+
│ ├── urls.py
65+
│ └── wsgi.py
66+
├── db.sqlite3
67+
├── manage.py
68+
├── readme.md
69+
└── snippets
70+
├── __init__.py
71+
├── admin.py
72+
├── apps.py
73+
├── migrations
74+
│ ├── 0001_initial.py
75+
│ └── __init__.py
76+
├── models.py
77+
├── permissions.py
78+
├── serializers.py
79+
├── serializers.py.bak
80+
├── tests.py
81+
├── urls.py
82+
├── urls.py.bak
83+
├── views.mixins.py.bak
84+
├── views.py
85+
└── views.py.bak
5486

5587
## Changes
5688

0 commit comments

Comments
 (0)