Marco Pfeiffer

Results 71 comments of Marco Pfeiffer

that's kind of hard. I already tried to make a version of this for meteor 0.9. The problem comes that the new package api only transfers compiled files to meteors...

I'll work this weekend on a approach similar to [this one I already did](https://github.com/Nemo64/meteor-bootstrap#custombootstrapjson). My (incompatible) idea is to register a resource-handler to files ending with `.bootstrap.less` and then prepending...

Nice hint. `Assets.getText` does not (always, but sometimes) work inside the build plugin but using `fs.readFileSync` on `.meteor/local/build/programs/server/assets/packages/author:package-name/asset-path` seems to work (that's the path for private assets). I now have...

you probably haven't included the mixins.less of bootstrap. Do you use the [Advanced Usage](https://github.com/simison/bootstrap3-less#advanced-usage)? If so, you need to `@import` your `variables.import.less` in every file which uses bootstrap mixins or...

Ok.. so you import bootstrap in `/client/app.less` and then use a mixin in `client/views/venues/venues_new/venues_new.less`, right? That sadly won't work because every `.less` file has its own scope of variables. You...

I'm currently working on it. (fork ;)) Btw. was there any reason to rename the bootstrap files? Files in a package only get imported when they are mentioned in the...

OK, [this](https://github.com/Nemo64/bootstrap3-less) is my try! I haven't fixed the issue with loading the javascript if no json file is present yet though.

oopps, i wanted to cancel the comment, not close the issue :D

I have the same issue. Restarting the docker daemon after the provisioning works. ``` docker-machine ssh [machine-name] service docker restart ``` https://user-images.githubusercontent.com/1749936/114251609-ee327280-99a1-11eb-9205-710113b16d56.mov

RDS data also has some other quirks like that you must use Secrets. However, since any lambda environment can talk to mysql over rds-data without libraries, it is fairly easy...