@@ -28,8 +28,7 @@ other information that should be provided before the modules are installed.
2828
2929Navigate to ** [ release page] ( https://github.com/vroncevic/flask_func_struct/releases ) ** download and extract release archive.
3030
31- To install modules type the following:
32-
31+ To install modules type the following
3332```
3433tar xvzf flask_func_struct-x.y.z.tar.gz
3534cd flask_func_struct-x.y.z/
@@ -45,8 +44,7 @@ Or You can use docker to create image/container.
4544
4645### Dependencies
4746
48- ** flask_func_struct** requires other modules and libraries (Python 2.x/3.x):
49-
47+ ** flask_func_struct** requires other modules and libraries (Python 2.x/3.x)
5048```
5149* Flask
5250* Flask-Migrate
@@ -64,96 +62,83 @@ Or You can use docker to create image/container.
6462
6563### Package structure
6664
67- Expected framework structure:
68-
65+ Expected framework structure
6966```
70- .
71- ├── app_server/
72- │ ├── configuration/
73- │ │ ├── database/
74- │ │ │ ├── development_config.py
75- │ │ │ ├── __init__.py
76- │ │ │ ├── production_config.py
77- │ │ │ └── test_config.py
67+ app_server/
68+ ├── configuration/
69+ │ ├── database/
7870│ │ ├── development_config.py
7971│ │ ├── __init__.py
80- │ │ ├── mail/
81- │ │ │ ├── development_config.py
82- │ │ │ ├── __init__.py
83- │ │ │ ├── production_config.py
84- │ │ │ └── test_config.py
8572│ │ ├── production_config.py
8673│ │ └── test_config.py
87- │ ├── forms/
88- │ │ ├── base/
89- │ │ │ ├── contact.py
90- │ │ │ └── __init__.py
91- │ │ ├── __init__.py
92- │ │ └── user/
93- │ │ ├── edit.py
94- │ │ ├── __init__.py
95- │ │ ├── login.py
96- │ │ └── register.py
74+ │ ├── development_config.py
9775│ ├── __init__.py
98- │ ├── models/
99- │ │ ├── __init__.py
100- │ │ └── model_user.py
101- │ ├── static/
102- │ │ ├── base.css
103- │ │ └── favicon.ico
104- │ ├── templates/
105- │ │ ├── base/
106- │ │ │ ├── about.html
107- │ │ │ ├── contact.html
108- │ │ │ └── home.html
109- │ │ ├── _base.html
110- │ │ ├── errors/
111- │ │ │ ├── 401.html
112- │ │ │ ├── 403.html
113- │ │ │ ├── 404.html
114- │ │ │ └── 500.html
115- │ │ ├── footer.html
116- │ │ ├── header.html
117- │ │ └── user/
118- │ │ ├── administration.html
119- │ │ ├── edit.html
120- │ │ ├── login.html
121- │ │ ├── members.html
122- │ │ └── register.html
123- │ ├── tests/
124- │ │ ├── base_query.py
125- │ │ ├── helpers.py
76+ │ ├── mail/
77+ │ │ ├── development_config.py
12678│ │ ├── __init__.py
127- │ │ ├── sqlalchemy_query.py
128- │ │ ├── test_config.py
129- │ │ ├── test_main.py
130- │ │ └── test_user.py
131- │ └── views/
132- │ ├── base/
133- │ │ ├── about.py
134- │ │ ├── contact.py
135- │ │ ├── home.py
136- │ │ └── __init__.py
79+ │ │ ├── production_config.py
80+ │ │ └── test_config.py
81+ │ ├── production_config.py
82+ │ └── test_config.py
83+ ├── forms/
84+ │ ├── base/
85+ │ │ ├── contact.py
86+ │ │ └── __init__.py
87+ │ ├── __init__.py
88+ │ └── user/
89+ │ ├── edit.py
13790│ ├── __init__.py
138- │ └── user/
139- │ ├── administration.py
140- │ ├── edit.py
141- │ ├── __init__.py
142- │ ├── login.py
143- │ ├── logout.py
144- │ ├── members.py
145- │ └── register.py
146- ├── manage_commands/
147- │ ├── create_database.py
148- │ ├── create_data.py
149- │ ├── create_superuser.py
150- │ ├── drop_database.py
91+ │ ├── login.py
92+ │ └── register.py
93+ ├── __init__.py
94+ ├── models/
15195│ ├── __init__.py
152- │ ├── orm_test.py
153- │ ├── run_coverage.py
154- │ └── run_test.py
155- └── manage.py
156-
96+ │ └── model_user.py
97+ ├── static/
98+ │ ├── base.css
99+ │ └── favicon.ico
100+ ├── templates/
101+ │ ├── base/
102+ │ │ ├── about.html
103+ │ │ ├── contact.html
104+ │ │ └── home.html
105+ │ ├── _base.html
106+ │ ├── errors/
107+ │ │ ├── 401.html
108+ │ │ ├── 403.html
109+ │ │ ├── 404.html
110+ │ │ └── 500.html
111+ │ ├── footer.html
112+ │ ├── header.html
113+ │ └── user/
114+ │ ├── administration.html
115+ │ ├── edit.html
116+ │ ├── login.html
117+ │ ├── members.html
118+ │ └── register.html
119+ ├── tests/
120+ │ ├── base_query.py
121+ │ ├── helpers.py
122+ │ ├── __init__.py
123+ │ ├── sqlalchemy_query.py
124+ │ ├── test_config.py
125+ │ ├── test_main.py
126+ │ └── test_user.py
127+ └── views/
128+ ├── base/
129+ │ ├── about.py
130+ │ ├── contact.py
131+ │ ├── home.py
132+ │ └── __init__.py
133+ ├── __init__.py
134+ └── user/
135+ ├── administration.py
136+ ├── edit.py
137+ ├── __init__.py
138+ ├── login.py
139+ ├── logout.py
140+ ├── members.py
141+ └── register.py
157142```
158143
159144### Docs
0 commit comments