Samir Sabri
Samir Sabri
As for my experience, I found that its better to run production pre-compile locally rather than at server when using react-rails gem, as it will result into building fresh packages...
When requesting the app, execjs starts and nodejs processes start working for a long time, I am not sure if it actually rebuild the assets at production server?? How can...
something like that: ``` client.addRequestTransform((request) => { for (var key in used_headers) request.headers[key] = used_headers[key] } ``` make sure to execute that code before using the client, this will set...
any find a solution for this? @dopry can you provide a working example?
@ulvido how did you log the file name as the screen shot? what tool is handy for this verbosity?
@emileswain thanks for sharing, so did it show the model on android with material? can you please share the repo on Github?
Thanks @metaskills , I am reading the docs, but I am still not sure how to change this at the `_deploy` ``` IMAGE_REPOSITORY="${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/my-awesome-lambda" ``` how was `my-awesome-lambda` got populated into...
So as for rails app, if I have a route like: ``` match 'package/new' => 'home#package_choosed', :via => [:post], as: "package_choosed" ``` then, I just have to create the proper...
Thanks @metaskills , but the link you shared is broken, can you fix it please.
Thanks @metaskills , I have tried on a new rails app, and it worked so well! However, I am still not sure how to apply it for a pre existing...