<FromGitter>
<eliasjpr> I would have to say since thing are working it would be nice to clean up a little the dependency that exists, I have read about people disliking the fact that amber projects are huge when compiled and slow to compile this are a couple of things that we should probably work.
<FromGitter>
<eliasjpr> Also, has anyone heard from @faustinoaq???
<FromGitter>
<drujensen> not lately.
<FromGitter>
<drujensen> Regarding size of Amber, I completely agree. I think it has added too many features that could have been moved to shards
<FromGitter>
<drujensen> look at reducing the number of shards we depend on
<FromGitter>
<eliasjpr> @elorest my dear friend. How are you? π
<FromGitter>
<AizuddinBadry> Hello, may i know how can i use nested routes in clear way ? β β I tried scoped my user auth with "/users" but its not working
<FromGitter>
<rishavs> Hi. I ave started a new project using Granite and am getting issues with starting up. I keep getting `Unhandled exception: No registered adapter with the name 'pg' (Exception)` β I am initializing the ORM as; β β ```code paste, see link``` [https://gitter.im/amberframework/amber?at=5b823d21f5402f32aa91ca4a]
<FromGitter>
<drujensen> Can you confirm that your ENV DATABASE_URL is set?
<FromGitter>
<drujensen> nm, that shouldnβt be the issue
<FromGitter>
<rishavs> :(
<FromGitter>
<drujensen> ok, this new Adapters change needs some love
<FromGitter>
<drujensen> If you move the ` # Granite::Adapters << Granite::Adapter::Pg.new({name: "pg", url: ENV["DATABASE_URL"]})` up to line 6, it will work
<FromGitter>
<drujensen> the problem is your actions are being loaded which loads the model before the adapters are registered
<FromGitter>
<drujensen> in Amber, we load the initializers first
<FromGitter>
<drujensen> which registers the Adapters
<FromGitter>
<drujensen> before requiring the models. Another option is to move this in a config file and require that before the actions
<FromGitter>
<Sija> also, authors should be referenced using their github @usernames
<FromGitter>
<Sija> like in previous releases
<FromGitter>
<Sija> commit shas are redundant too
<FromGitter>
<rishavs> In Granite, can I define a field in my model as the primary key?
<FromGitter>
<rishavs> Having some major issues with using Granite with DbaaS like elephantsql. My simple get queries are taking seconds instead of milliseconds and after runnig a few, i get too many commenctions issue. If I use the base db library, i get 150 ms to make the same query. But if I use Granite, I am getting 1.5s for the query. β β ```code paste, see link``` [https://gitter.im/amberf