Not Beginner Friendly Project #1115
-
First Check
Commit to Help
Example CodeAfter spending a few hours on this project and it still not building I've noticed that there is very little documentation that explains how the Docker images are setup. For example I have a test failing cause files are missing, and staging deployment failing cause some networking issue. Where do the tests come from? What is already being included in the backend docker image? Its better to use a raw Ubuntu image and show the steps being taken to build the image that is being used to run these other tests. DescriptionSee above Operating SystemWindows Operating System DetailsSee above Python VersionSee above Additional ContextSee above |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I agree that this is not a very beginner friendly project, but keep in mind the idea for this project is not to be beginner friendly, but to use best practices and provide a good base developers can start with. That said, I'm a bit surprised that you spent hours trying to build the project, these steps should be enough:
Concerning docker this is structure as I understand it:The frontend and backend each have their own docker file, indicating how to create their own image. There are multiple docker-compose files:
Please if you agree or disagree with my interpretation of the structure leave a comment, so we can know with more certainty For something a bit more beginner friendly you might wanna check one of these out: |
Beta Was this translation helpful? Give feedback.
I agree that this is not a very beginner friendly project, but keep in mind the idea for this project is not to be beginner friendly, but to use best practices and provide a good base developers can start with.
That said, I'm a bit surprised that you spent hours trying to build the project, these steps should be enough:
Your page should be available on http://localhost
Concerning docker this is structure as I understand it:
The frontend and backend each have their own docker file, indicatin…