You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Miguel, I am working on a project and I decided to use APIFairy for documentation. Every time i make changes to the application while running the application with gunicorn, the changes are not reflect for the APIFairy_title and version in the config file. My compose file configuration;
build: .
command: gunicorn --bind 0.0.0.0:5000 --access-logfile - --reload "run:app"
ports:
- "5000:5000"
restart: always
env_file:
- .env.dev
volumes:
- .:/usr/src/app
depends_on:
- db
- celery```
My config file;
`
# apifairy documentation
APIFAIRY_TITLE = 'User Service API'
APIFAIRY_VERSION = '1.0'
`
Whenever I run it without using gunicorn, the changes are reflected in the doc on web browser.
The text was updated successfully, but these errors were encountered:
But you are running a Docker image. How are you making changes to the application? Are you modifying the contents of your Docker image? Is Gunicorn detecting the change and reloading? If Gunicorn does not reload, then this is something you to discuss with the Gunicorn project.
Hi Miguel, I am working on a project and I decided to use APIFairy for documentation. Every time i make changes to the application while running the application with gunicorn, the changes are not reflect for the APIFairy_title and version in the config file. My compose file configuration;
The text was updated successfully, but these errors were encountered: