How do I get this running on local? #1110
-
I added configuration to the .env files and ran docker compose up -d I'm not sure if it has to do with the FLOWER_BASIC_AUTH= in .env There's not much to go by in the docs. It says to not use this and use it at the same time. "This project is currently being restructured, don't use it right now, hold for a bit. In the next couple of weeks it will be ready. 😎 🚀" "You can just fork or clone this repository and use it as is. ✨ It just works. ✨" I would also like to debug in the backend at least. |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments 6 replies
-
Update this with your app domainDOMAIN=localhost DOMAIN=localhost.tiangolo.comSERVER_HOST=http://localhost PROJECT_NAME="FastAPI Project" STACK_NAME=fastapi-project BackendBACKEND_CORS_ORIGINS="http://localhost,http://localhost:5173,https://localhost,https://localhost:5173" USERS_OPEN_REGISTRATION=False PostgresPOSTGRES_SERVER=db PgAdminPGADMIN_DEFAULT_EMAIL=admin@example.com SENTRY_DSN= FlowerFLOWER_BASIC_AUTH= Configure these with your own Docker registry imagesDOCKER_IMAGE_BACKEND=backend |
Beta Was this translation helpful? Give feedback.
-
Probably going to give up on this project for a bit since the documentation isn't working for me. Too bad. I was excited to see a project that takes away a lot of boilerplate. |
Beta Was this translation helpful? Give feedback.
-
Check the docker-compose logs. Did the backend start up without errors? You're looking for a clean startup:
This has to work from your browser: http://localhost/api/v1/openapi.json If you get it working, let us know how you did it, then close the issue. |
Beta Was this translation helpful? Give feedback.
-
Hi, I have a similar problem
|
Beta Was this translation helpful? Give feedback.
-
I have exactly same problem: In front end they are render this URL httpS://localhost/ with HTTPS. No errors in docker compose, but the backend cannot be able to respond in 443 . I ll try to configure that . But if you have a tip it ll be helpfully . |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Check the docker-compose logs. Did the backend start up without errors?
You're looking for a clean startup:
This has to work from your browser: http://localhost/api/v1/openapi.json
If you get it working, let us know how you did it, then close the issue.