digitalmars.D.announce - Heroku Buildpack for D
- Martin Nowak (5/5) Oct 25 2015 I wrote a buildpack for Heroku to easily deploy D apps.
- Andre (11/16) Oct 26 2015 Great work. I think it worths to only extract the necessary files.
- Martin Nowak (2/7) Oct 26 2015 Did that, and also cleaned the local .dub folder.
I wrote a buildpack for Heroku to easily deploy D apps. The script is based on the Travis-CI build script, so you can select the same compilers (using a .d-compiler file) and get the same DC/DMD env vars. https://github.com/MartinNowak/heroku-buildpack-d
Oct 25 2015
On Monday, 26 October 2015 at 04:13:50 UTC, Martin Nowak wrote:I wrote a buildpack for Heroku to easily deploy D apps. The script is based on the Travis-CI build script, so you can select the same compilers (using a .d-compiler file) and get the same DC/DMD env vars. https://github.com/MartinNowak/heroku-buildpack-dGreat work. I think it worths to only extract the necessary files. -> linux/lib64/* -> linux/bin64/* -> object.d (maybe also others from runtime) Last time I checked also phobos was necesarry due to curl usage. Maybe it isn't necessary anymore due to latest curl changes in 2.0.69 This makes the installation a little bit faster, also for every cf push less cache files needs to be copied.
Oct 26 2015
On Monday, 26 October 2015 at 13:22:21 UTC, Andre wrote:Great work. I think it worths to only extract the necessary files. -> linux/lib64/* -> linux/bin64/* -> object.d (maybe also others from runtime)Did that, and also cleaned the local .dub folder.
Oct 26 2015