Direkt zum Hauptbereich

Posts

Posts mit dem Label "sqlite3" werden angezeigt.

rails deployment with sqlite3 in production too - cms online AND offline

After starting to use refinerycms I ran into some problems with my settings after deploying my app with capistrano. First of all I was concerned with how the cms would work: somebody does something offline, e.g. coding a view and online somebody is writing a page or creating users How would this go together without dataloss? I ask my question and got some good answers - quick as well: deployment to production with capistrano to vserver - consistency question regarding databases and cms settings - NOT heroku Bottom line was: refinerycms is using files for settings online users will just work with the database, offline users/coders do scripting therefore merging is easy For me it was not that easy at all because I used sqlite3 for developement and production and had to tell capistrano how to keep ONE database alive while rolling out releases: in database.yml production:   adapter: sqlite3   database: /var/www/*****/shared/ production.sqlite3   pool...