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! Thank you for this awesome project. I am attempting to use kuby for the first time and have some questions. Is the project still in active development?
I have a application that is already containerized and I use docker-compose locally to develop, is there a reccomended approach to configuring Kuby with that setup?
I seem to also be having an issue with the db setup, I added the cockroachdb adapter as per the documentation, but my build command spits out the following. Any ideas?
error: undefined local variable or method `adapter' for Kuby::Plugins::RailsApp::Database:Class
The text was updated successfully, but these errors were encountered:
Hey @javid-g, glad you're taking Kuby for a spin! Yes, I'm still actively maintaining the project :)
I have a application that is already containerized and I use docker-compose locally to develop, is there a reccomended approach to configuring Kuby with that setup?
Right now Kuby doesn't support docker-compose, or any solution where you bring your own Dockerfile. This is because the Docker build and deployment mechanism are pretty tightly coupled. Kuby adds an abstraction layer over the whole thing.
I seem to also be having an issue with the db setup, I added the cockroachdb adapter as per the documentation, but my build command spits out the following. Any ideas?
Without seeing the code I'm not 100% sure. Are you able to share the code you're working on or put together a reproducible app I can take a look at? In the interim, make sure of the following:
Set adapter: cockroachdb in config/database.yml.
Deploy by specifying the -e production (or whatever environment has adapter: cockroachdb) flag.
Hi! Thank you for this awesome project. I am attempting to use kuby for the first time and have some questions. Is the project still in active development?
I have a application that is already containerized and I use docker-compose locally to develop, is there a reccomended approach to configuring
Kuby
with that setup?I seem to also be having an issue with the
db
setup, I added thecockroachdb
adapter as per the documentation, but mybuild
command spits out the following. Any ideas?The text was updated successfully, but these errors were encountered: