Hello,
the application when we create a workspace, by default includes the sqlite.
I however want to use postgresql from the start, something that can be made by
rails new myapp --database=postgresql
but in our case, I have to go through lots of reconfiguration as indicated here:
https://community.c9.io/t/setting-up-postgresqlI could eventually go to the console and type that rails new myapp --database=postgresql
but it has never worked out for me as it says that, of course, i cant get a new application inside the other application but
if I go to an upper directory I cant see there where the new application is, even if I click on show hidden files, which, wouldn’t be a hidden file but a whole application. Well, I got to see it by clicking on favorites but it is in the middle of the tree bugged by the other application which was created automatically when launched the workspace, so it is not ok like that.
So then, how can we get started working with postgresql instead of sqlite? This is important, because Heroku does not like having to do reconfiguration or mutation of a sqlite 3 into postgresql, could get the whole db messed up, so I prefer to use in development the same db than in production.
thank you very much