Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
2a1e982
init app template v1
Dec 9, 2019
9958b4a
init app template v2, init auth app
Dec 16, 2019
ee6bbd9
implemented sign-up, custom validators, improved project template, im…
Dec 20, 2019
3ccbb1b
configured flask-jwt, implemented sign-in.
Dec 25, 2019
883ec92
improved app settings
Dec 29, 2019
3cb2752
init auto autogenerated open api
Dec 30, 2019
42f2352
implemented auth refresh token, implemented jwt extended errors wrapp…
Dec 31, 2019
7821ad8
configured default datetime format for api
Jan 4, 2020
0292c43
configured flask-babel translations
Jan 4, 2020
304e51d
init boards app, improved PK mixin, created PK validator
Jan 5, 2020
90b4c36
init permissions app
Jan 6, 2020
f25e536
implemented permissions meta
Jan 6, 2020
7be4d69
init custom pagination, init list of permissions
Jan 7, 2020
5740a0b
renamed serializers to schemas, improved boards, permissions
Jan 9, 2020
e591a6a
improved boards, permissions endpoints
Jan 12, 2020
25fb452
light refactoring, improved permissions endpoint
Jan 13, 2020
dfa3489
init columns endpoints, improvements
Feb 1, 2020
03bf5b4
improved columns endpoints
Feb 2, 2020
86038a4
init tasks endpoints
Feb 15, 2020
a86e6cc
refactoring
Feb 15, 2020
0c65564
fixed task list ordering
Feb 16, 2020
7d9ae7f
implemented tasks search
Feb 22, 2020
a402280
implemented tasks by columns
Feb 22, 2020
9bf9612
improved meta data for tasks
Feb 22, 2020
60128ad
implemented tasks by columns, light improvements
Feb 23, 2020
f05546d
tasks with performers
Feb 23, 2020
4f02c2d
configured flask-cache via redis
Mar 14, 2020
8072097
implemented permissions via decorator
Mar 21, 2020
fccec08
refactoring v1
Mar 21, 2020
e051254
init api docs
Mar 22, 2020
6938425
boards update
Mar 28, 2020
c9da148
updated translations
Mar 28, 2020
4059555
updated .env.example, migrations
Mar 28, 2020
e4c2704
root url
Mar 28, 2020
944aae4
light fixes, improvements
Mar 28, 2020
9e97a83
run with docker, light refactor, updated readme
Apr 5, 2020
868b690
updated .gitignore
Apr 5, 2020
8154b01
light remarks
Apr 5, 2020
20bd018
pagination improved, updated translations
Apr 6, 2020
6b3e84a
updated requirements
Apr 8, 2020
354746e
refactoring v1
Apr 10, 2020
7195ff4
refactoring v2
Apr 11, 2020
cf68e04
refactoring v3
Apr 11, 2020
a2d867e
init tests
Apr 19, 2020
b15bfec
core utils tests, light refactoring
Apr 20, 2020
107bd37
enabled pytest-cov
Apr 25, 2020
f82a37d
implemented auth tests, light refactor
Apr 25, 2020
ad26898
light refactor, init boards tests
Apr 25, 2020
af443c0
light fixes, boards tests
Apr 26, 2020
f9ee68d
light fixes, boards tests v2
Apr 26, 2020
ad61879
test_utils improvements
Apr 26, 2020
2492066
tasks, boards factories
May 3, 2020
d1756bb
columns tests
May 3, 2020
781f9e1
added auth refresh checkpoints
May 4, 2020
c31a5a3
tasks tests
May 9, 2020
b5084ae
permissions checkpoints
May 10, 2020
ffd12c3
updated: readme, todo; implemented: docker-compose-tests
May 10, 2020
c9d7ef4
light fixtures improve
May 16, 2020
48dedb1
updated readme
May 16, 2020
788aff8
tests fixes
May 30, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .deploy/__init__.py
Empty file.
Empty file added .deploy/local/__init__.py
Empty file.
11 changes: 11 additions & 0 deletions .deploy/local/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM python:3.7
ENV PYTHONUNBUFFERED 1
RUN mkdir /app
WORKDIR /app
COPY . /app/
RUN pip install --upgrade pip
RUN if [ ${MODE} = prod ]; \
then pip install -r requirements/prod.txt; \
else pip install -r requirements/dev.txt; \
fi

Empty file added .deploy/local/api/__init__.py
Empty file.
4 changes: 4 additions & 0 deletions .deploy/local/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM nginx:1.17-alpine

RUN rm /etc/nginx/conf.d/default.conf
COPY default.conf /etc/nginx/conf.d
Empty file added .deploy/local/nginx/__init__.py
Empty file.
17 changes: 17 additions & 0 deletions .deploy/local/nginx/default.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
upstream localhost {
server web_service:8000;
}

server {
listen 8000;
server_name localhost;

location /static/ {
autoindex on;
alias /app/static/;
}

location / {
proxy_pass http://localhost;
}
}
Empty file.
Loading