Feature #3669
Updated by Md Shahzar 4 months ago
Follow the below structure
app-engine/
├── .gcloudignore
├── appengine
├── requirements.txt
├── app-dev.yaml
├── app-qa.yaml
├── app-prod.yaml
├── main.py
├── app/
│ ├── __init__.py
│ ├── routes.py
│ ├── services/
│ │ ├── __init__.py
│ │ ├── openai_service.py
│ │ └── qna_service.py
│ ├── clients/
│ │ ├── __init__.py
│ │ ├── openai_client.py
│ │ └── bucket_client.py
│ ├── utils/
│ │ ├── __init__.py
│ │ ├── key_encoder_decoder.py
│ │ └── app_config.py
│ ├── openai/
│ │ ├── __init__.py
│ │ └── routes.py
│ └── qna/
│ ├── __init__.py
│ └── routes.py
└── tests/
└── all the test will be inside this folder