Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] First setup docker and first impressions #2

Merged
merged 40 commits into from
May 21, 2020
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
6b6f960
adding more files to gitignore
alexmaramaldo May 2, 2020
d7d9290
adding first setup with redis, postgres and python and requirements.txt
alexmaramaldo May 2, 2020
e69946d
adding pydicom om project
alexmaramaldo May 2, 2020
6194723
adding redis on requirements.txt and .vscode on .gitignore
alexmaramaldo May 5, 2020
e52f10d
adding kafta and zokeepr
alexmaramaldo May 8, 2020
9301479
adding flask with first setup and little custom framework from scratch!
alexmaramaldo May 9, 2020
022ea7f
adding first setup to .env.example
alexmaramaldo May 9, 2020
dc94fd1
removing comments
alexmaramaldo May 9, 2020
144cdd0
fixed all pylint problems
alexmaramaldo May 9, 2020
c786455
adding docker to run the flask
alexmaramaldo May 10, 2020
05f0387
adding autopep8
alexmaramaldo May 10, 2020
e2cad38
adding port to setup
alexmaramaldo May 10, 2020
d16cff9
fixing port name
alexmaramaldo May 10, 2020
eba8100
adding Makefile, auth login, decorators and blacklist table
alexmaramaldo May 10, 2020
fdc03b2
adapting formating to pylint
alexmaramaldo May 10, 2020
0b0a78b
fixing problem on auth and time expiration
alexmaramaldo May 10, 2020
7a30ee2
adding more setup to envionments
alexmaramaldo May 10, 2020
b90cb5c
adding config and setup to amazonaws
alexmaramaldo May 10, 2020
cee880b
adding informations do amazon
alexmaramaldo May 10, 2020
a94e60e
adding more packages
alexmaramaldo May 10, 2020
7c8187d
debug
alexmaramaldo May 10, 2020
a78a473
adding ebmigrate
alexmaramaldo May 10, 2020
5661df9
configured Procfile
alexmaramaldo May 10, 2020
a9369ee
adding gunicorn to deploy amazon
alexmaramaldo May 10, 2020
0a54d38
allowing remote connections
alexmaramaldo May 10, 2020
d432efe
changing command to start app
alexmaramaldo May 10, 2020
0455116
removing procfile
alexmaramaldo May 10, 2020
ea8bae3
adding application.py
alexmaramaldo May 10, 2020
95d0ef1
removing appKey
alexmaramaldo May 10, 2020
ce725f7
changing library and fixing pylint
alexmaramaldo May 14, 2020
3d5ff80
adding cors
alexmaramaldo May 14, 2020
93a822b
adding cors
alexmaramaldo May 14, 2020
37fe062
adding pylint
alexmaramaldo May 14, 2020
40633bc
changing flask_restx
alexmaramaldo May 14, 2020
2527a79
fixing tests
alexmaramaldo May 14, 2020
1ef7687
removing vars
alexmaramaldo May 14, 2020
7e2e051
adding readme
alexmaramaldo May 14, 2020
88e18ab
Create pythonpackage.yml
alexmaramaldo May 14, 2020
519dbf0
Merge branch 'master' into feature/first-setup-docker-and-first-impre…
alexmaramaldo May 14, 2020
ea94d54
starting exam crud
alexmaramaldo May 19, 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
3 changes: 3 additions & 0 deletions .ebextensions/01_packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
packages:
yum:
postgresql95-devel: []
3 changes: 3 additions & 0 deletions .ebextensions/02_starter.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
container_commands:
01_migrate:
command: "python manage.py db upgrade"
20 changes: 20 additions & 0 deletions .elasticbeanstalk/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
branch-defaults:
default:
environment: mrb-env
group_suffix: null
feature/first-setup-docker-and-first-impressions:
environment: mrb-env
global:
application_name: mrb-backend
branch: null
default_ec2_keyname: null
default_platform: Python 3.6
default_region: sa-east-1
include_git_submodules: true
instance_profile: null
platform_name: null
platform_version: null
profile: eb-cli
repository: null
sc: null
workspace_type: Application
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.vscode
.history
docker/postgres/db
docker/redis/data

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Loading