Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Deploy de uma aplicação django no openshift
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Roger Camargo
April 11, 2016
Technology
150
0
Share
Deploy de uma aplicação django no openshift
Uma visão geral das etapas para fazer deploy da sua aplicação Django no openshift
Roger Camargo
April 11, 2016
More Decks by Roger Camargo
See All by Roger Camargo
AWS Lambda, Rodar local, com testes, IaC e Deploy via ansible
huogerac
1
33
Mapa de estudo dev frontend 2023
huogerac
1
90
Documentando API no Django com django-ninja
huogerac
1
130
Um pouco da origem para chegar no WSGI
huogerac
0
54
"API Design First" pt-br
huogerac
0
280
Design First Web APIs - OpenAPI 3
huogerac
1
120
3 Arquiteturas Django
huogerac
1
340
Django ORM vs SQLAlchemy (queries)
huogerac
0
190
Django ORM vs SQLAlchemy (intro)
huogerac
0
100
Other Decks in Technology
See All in Technology
AI時代の私の技術インプットとアウトプット術
tonkotsuboy_com
15
7.8k
A Harness for Behaviour: how to get AI to generate code that does what we intend, or "TDD in the age of AI"
xpmatteo
1
520
AIが変えた"品質の守り方"
kkakizaki
13
5.4k
AI-DLCを活用した高品質・安全なAI駆動開発実践 / AI Driven Development
yoshidashingo
1
250
Kaggle未経験社員をメダリストに育てる「AIドラゴン桜」
lycorptech_jp
PRO
0
660
Datadog 認定試験の概要と対策
uechishingo
0
190
個人AIからチームAIへ:開発における品質と生産性の再設計
moongift
PRO
0
310
開発を止めない CI/CD ~CI Visibilityによる継続的最適化~
pensuke628
0
200
Amazon Bedrock 経由の Claude Cowork を試してみよう・MCP にも繋いでみよう
sugimomoto
0
260
組織の中で自分を経営する技術
shoota
0
220
権限管理設計を完全に理解した
rsugi
2
240
GitHub Copilot CLIでWebアクセシビリティを改善した話
tomokusaba
0
130
Featured
See All Featured
Tell your own story through comics
letsgokoyo
1
930
Odyssey Design
rkendrick25
PRO
2
640
Visual Storytelling: How to be a Superhuman Communicator
reverentgeek
2
540
Public Speaking Without Barfing On Your Shoes - THAT 2023
reverentgeek
1
410
Neural Spatial Audio Processing for Sound Field Analysis and Control
skoyamalab
0
310
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
4k
Testing 201, or: Great Expectations
jmmastey
46
8.2k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
2
200
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.8k
Building AI with AI
inesmontani
PRO
1
1k
Java REST API Framework Comparison - PWX 2021
mraible
34
9.3k
Transcript
Deploy de uma aplicação django no openshift Roger Camargo GruPy
SP - Abril 2015
Motivações
Motivações #1 Estrutura não padrão (template django) #2 Repositório Git
#3 Onde usar
None
PaaS Openshift
Live demo https://openshift.redhat.com/app/console
#1 Write once run anywhere
None
None
Nova estrutura Tentativa de deixar mais no padrão django (two
scoops of django)
Base do openshift packages = ['Django==1.6.6', ] setup(name='myproject', version='1.0', description='OpenShift
App', author='Roger Camargo', author_email='
[email protected]
', url='https://pypi.python.org/pypi', install_requires=packages, )
Base do openshift os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings.openshift") from django.core.wsgi import get_wsgi_application application
= get_wsgi_application()
Estrutura padrão de um projeto Django
#2 Repositorio Git
APLICAÇÃO repo Dev git clone
APLICAÇÃO repo Dev git clone Dev 2 Dev 3 Dev
4
APLICAÇÃO repo Dev git clone Dev 2 Dev 3 Dev
4 Mas eu quero usar GitHub
APLICAÇÃO repo Dev git push Dev 2 Dev 3 Dev
4 git clone
#3 Onde usar?
#3 Onde usar? - Blog, pagina pessoal - MVP, POC
- Como CI etc...
None
Perguntas?
Obrigado! Roger Camargo
[email protected]
@huogerac github.com/huogerac https://github.com/huogerac/django16-openshift-template