Skip to content

Commit 8bd5fd5

Browse files
authored
Merge pull request #23 from vroncevic/dev
[flask_func_struct] #21 #22 updated version, docs, GHW actions, code coverage, setup module, Dockerfile
2 parents 3e923fe + 2ea2e34 commit 8bd5fd5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+121
-143
lines changed

.github/workflows/flask_func_struct_docker_checker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: flask_func_struct docker checker
1+
name: flask_func_struct_docker_checker
22
on:
33
push:
44
branches: [ master ]
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v2
16-
- name: build docker image
16+
- name: flask_func_struct_docker_checker
1717
id: docker_checker
1818
run: |
1919
echo Building Docker image

.github/workflows/flask_func_struct_package.yml renamed to .github/workflows/flask_func_struct_package_checker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: flask_func_structs python package
1+
name: flask_func_struct_package_checker
22
on:
33
push:
44
branches: [ master ]
@@ -20,7 +20,7 @@ jobs:
2020
python-version: [2.7]
2121
steps:
2222
- uses: actions/checkout@v2
23-
- name: set up Python ${{ matrix.python-version }}
23+
- name: set up python ${{ matrix.python-version }}
2424
uses: actions/setup-python@v1
2525
with:
2626
python-version: ${{ matrix.python-version }}

.github/workflows/flask_func_struct_py_checker.yml renamed to .github/workflows/flask_func_struct_python_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: flask_func_struct py checker
1+
name: flask_func_struct_python_checker
22
on:
33
push:
44
branches: [ master ]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: flask_func_struct toc generator
1+
name: flask_func_struct_toc
22
on:
33
push:
44
paths:
55
- '**.md'
66
jobs:
77
generateTOC:
8-
name: flask_func_struct toc generator
8+
name: flask_func_struct_toc
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: technote-space/toc-generator@v2
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: flask_func_struct triage
1+
name: flask_func_struct_triage
22
on:
33
issues:
44
types: [opened]
55
jobs:
66
commentOnNewIssues:
7-
name: flask_func_struct triage
7+
name: flask_func_struct_triage
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v2
11-
- name: flask_func_struct triage
11+
- name: flask_func_struct_triage
1212
uses: actions/github@v1.0.0
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1515
with:
16-
args: comment "[flask_func_struct] should be supported for Python 2.7, 3.5, 3.6, 3.7, 3.8, 3.9"
16+
args: comment "[flask_func_struct] should be supported for Python 2.7"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: flask_func_struct_triage_label
2+
on:
3+
issues:
4+
types: [opened]
5+
jobs:
6+
applyTriageLabel:
7+
name: flask_func_struct_triage_label
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: flask_func_struct_triage_label
12+
uses: actions/github@v1.0.0
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
with:
16+
args: label triage

README.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The README is used to introduce the modules and provide instructions on
1010
how to install the modules, any machine dependencies it may have and any
1111
other information that should be provided before the modules are installed.
1212

13-
[![flask_func_struct py code checker](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_py_checker.yml/badge.svg)](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_py_checker.yml) [![flask_func_struct python package checker](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_package.yml/badge.svg)](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_package.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/flask_func_struct.svg)](https://github.com/vroncevic/flask_func_struct/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/flask_func_struct.svg)](https://github.com/vroncevic/flask_func_struct/graphs/contributors)
13+
[![flask_func_struct python checker](https://img.shields.io/github/workflow/status/vroncevic/flask_func_struct/flask_func_struct_python_checker?style=flat&label=flask_func_struct%20python%20checker)](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_python_checker.yml) [![flask_func_struct package checker](https://img.shields.io/github/workflow/status/vroncevic/flask_func_struct/flask_func_struct_package_checker?style=flat&label=flask_func_struct%20package%20checker)](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_package_checker.yml) [![GitHub issues open](https://img.shields.io/github/issues/vroncevic/flask_func_struct.svg)](https://github.com/vroncevic/flask_func_struct/issues) [![GitHub contributors](https://img.shields.io/github/contributors/vroncevic/flask_func_struct.svg)](https://github.com/vroncevic/flask_func_struct/graphs/contributors)
1414

1515
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
1616
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
@@ -28,6 +28,10 @@ other information that should be provided before the modules are installed.
2828

2929
### Installation
3030

31+
Used next development environment
32+
33+
![debian linux os](https://raw.githubusercontent.com/vroncevic/flask_func_struct/dev/docs/debtux.png)
34+
3135
Navigate to **[release page](https://github.com/vroncevic/flask_func_struct/releases)** download and extract release archive 📦.
3236

3337
To install modules type the following
@@ -43,7 +47,7 @@ cp -R /app_server/ /Flask/
4347

4448
Or You can use Dockerfile to create image/container 🚢.
4549

46-
[![flask_func_struct docker checker](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_docker_checker.yml/badge.svg)](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_docker_checker.yml)
50+
[![flask_func_struct docker checker](https://img.shields.io/github/workflow/status/vroncevic/flask_func_struct/flask_func_struct_docker_checker?style=flat&label=flask_func_struct%20docker%20checker)](https://github.com/vroncevic/flask_func_struct/actions/workflows/flask_func_struct_docker_checker.yml)
4751

4852
### Usage
4953

@@ -185,14 +189,6 @@ app_server/
185189
│   ├── login.html
186190
│   ├── members.html
187191
│   └── register.html
188-
├── tests/
189-
│   ├── base_query.py
190-
│   ├── helpers.py
191-
│   ├── __init__.py
192-
│   ├── sqlalchemy_query.py
193-
│   ├── test_config.py
194-
│   ├── test_main.py
195-
│   └── test_user.py
196192
└── views/
197193
├── base/
198194
│   ├── about.py
@@ -212,7 +208,7 @@ app_server/
212208

213209
### Docs
214210

215-
[![Documentation Status](https://readthedocs.org/projects/flask-func-struct/badge/?version=latest)](https://flask-func-struct.readthedocs.io/en/latest/?badge=latest) [![Pages build deployment](https://github.com/vroncevic/flask_func_struct/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/vroncevic/flask_func_struct/actions/workflows/pages/pages-build-deployment)
211+
[![Documentation Status](https://readthedocs.org/projects/flask-func-struct/badge/?version=latest)](https://flask-func-struct.readthedocs.io/en/latest/?badge=latest)
216212

217213
📗 More documentation and info at
218214

app_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
__copyright__ = 'Copyright 2017, Free software to use and distributed it.'
7979
__credits__ = ['Vladimir Roncevic']
8080
__license__ = 'GNU General Public License (GPL)'
81-
__version__ = '1.3.0'
81+
__version__ = '1.4.0'
8282
__maintainer__ = 'Vladimir Roncevic'
8383
__email__ = 'elektron.ronca@gmail.com'
8484
__status__ = 'Updated'

app_server/configuration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
__copyright__ = 'Copyright 2017, Free software to use and distributed it.'
2525
__credits__ = ['Vladimir Roncevic']
2626
__license__ = 'GNU General Public License (GPL)'
27-
__version__ = '1.3.0'
27+
__version__ = '1.4.0'
2828
__maintainer__ = 'Vladimir Roncevic'
2929
__email__ = 'elektron.ronca@gmail.com'
3030
__status__ = 'Updated'

app_server/configuration/database/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
__copyright__ = 'Copyright 2017, Free software to use and distributed it.'
2525
__credits__ = ['Vladimir Roncevic']
2626
__license__ = 'GNU General Public License (GPL)'
27-
__version__ = '1.3.0'
27+
__version__ = '1.4.0'
2828
__maintainer__ = 'Vladimir Roncevic'
2929
__email__ = 'elektron.ronca@gmail.com'
3030
__status__ = 'Updated'

0 commit comments

Comments
 (0)