-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request: Docker deploy #26
Comments
Did you mean deploying frontend and backend Docker images to Docker Hub? |
If you need help setting up or improving your GitHub workflows for deployment, i can do this |
Oh sorry I meant like premade containers for the project to make it easier to deploy. |
/front
|
When i try build front-end via npm i got blank page it's correctly? |
Do you have any errors in the browser console ? |
|
Ok these are errors related to react-icons. They changed the names of some Lucide icons. I have changed that in the dev versions.
|
5.3.0 works. (I have tested it.) |
I managed to get the software running in a dockerized environment. But honestly, it was a lot of effort. I could help out if needed, but first there's something else for me to sort out: I had to make adjustments that definitely had nothing to do with Docker. And the README is missing some information, for example that Poetry >=1.8 is required or that you need redis based on default values in config.py. |
Thanks for the feedback and for running it in Dockerized environment. The I have updated the # Flask-Caching
CACHE_TYPE = os.environ.get("CACHE_TYPE") or "RedisCache"
CACHE_REDIS_HOST = os.environ.get("CACHE_REDIS_HOST") or "localhost"
CACHE_REDIS_PORT = int(os.environ.get("CACHE_REDIS_PORT") or "6379")
CACHE_REDIS_DB = int(os.environ.get("CACHE_REDIS_DB") or "0")
CACHE_KEY_PREFIX = os.environ.get("CACHE_KEY_PREFIX") or "mylists_cache_" If you are interested in contributing, your help is most welcome. |
Of course I didn't mean that in a bad way, I was just quite irritated. For example, I couldn't start the backend without modifying it:
But I guess this is quite off topic. |
I would love to see this as a Docker! |
A ready to go docker container would be nice. Preferably with an
.env
file to enter the keys and variables. I would appreciate this if it was added :)The text was updated successfully, but these errors were encountered: