Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
Project and Workflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Project and Workflow
0463c01ab093b44fe8aa349b2fabf01cee4f159e
project-and-workflow
app
main.py
Find file
Normal view
Permalink
main.py
105 B
Newer
Older
Blame preferences
Learn to ignore specific revisions
Set up project structure and Python frameworks (osdu/platform/system/project-and-workflow!1)
Carlos Colin
committed
1 year ago
1
2
3
4
5
6
7
8
9
10
from
fastapi
import
FastAPI
def
create_app
():
app
=
FastAPI
()
return
app
app
=
create_app
()