4

anyone used heroku with common lisp?

Submitted by no_defun_allowed in programming

i'm too stupid to understand how examples work and the heroku docs don't cover too much about using other languages so idk how it's supposed to work, but i want to deploy a hunchentoot program onto heroku and make it do web things. has anyone attempted such a feat before? how do i work this? what is a large automobile? i have a lot of questions pls halp

Comments

You must log in or register to comment.

3

hollyhoppet wrote (edited )

Hey we host on heroku so i know my way around it a bit. It looks like you can use this buildpack for common lisp.

To use a specific buildpack in your heroku app, go to the settings for your heroku app on the web administration tool, to "Buildpacks," click "Add Buildpack," and just paste in the URL of the buildpack's git repo. When you push your code to heroku it'll grab from the buidlpack's git repo and use the instructions there to set up your application. I think there's also a way to add a buildpack via terminal but i forgot it :P

Make sure you follow the readme of the buildpack and copy the example git project as a base to work from. It'll contain important files (notably Procfile) for heroku to use to build off of.

I haven't actually tried any of this so I don't know if here are any other potential issues but in theory this is how you'd do it. Good luck!