hunchentoot Questions

2

Solved

I started playing with SBCL Common Lisp and want to develop a small web application using Hunchentoot. For easy deployment I planned to save everything in a binary using sb-ext:save-lisp-and-die as...
Transoceanic asked 24/5, 2015 at 10:25

1

I am having some issues in enabling CORS on hunchentoot: (hunchentoot:define-easy-handler (one-api :uri *one-endpoint*) () (when (boundp '*acceptor*) (setf (hunchentoot:header-out "Access-Cont...
Exclave asked 4/12, 2019 at 14:23

3

I couldn't find any documentation on how to dispatch based on HTTP method (on the same uri). The closest I got was :default-request-type on the define-easy-handler -- but it seems to dispatch to th...
Corley asked 27/9, 2013 at 23:50

3

Solved

I am wondering how one goes about deploying a Common Lisp web application written in, say, Hunchentoot, Wookie, Woo, or even Clack. That is, suppose I write an app that contains some files, packag...

3

How do I start Hunchentoot on a project? I looked over Edi Weitz's guide and everything went smoothly until after installation. The listed tutorials were either broken or skimmed over actual server...
Belsen asked 2/11, 2013 at 6:24

1

Solved

Currently, I'm developing 2 web-based tools for my own need with hunchentoot. Before starting hunchentoot, I want to set some special variable with let so there values will be available while hunch...
Pennyworth asked 22/10, 2016 at 9:33

4

Solved

Here is the back story skip to the bottom if you do not care and only want to see the question. So I have been playing around in LISP for a little while. Some basic functions, some classes ,and fi...
Obstreperous asked 10/7, 2009 at 13:49

2

I find that incremental development tends to break when coding for Hunchentoot. For example, I might write a web page that is composed of a few functions. If one of these inner functions contains ...
Jamin asked 7/4, 2014 at 3:31

6

I'm working on a web app using Hunchentoot (on SBCL and Linux), and usually I just run it from Emacs (SLIME), but for deployment I want something that's easier to automate. So I'm trying to figure ...
Seabrook asked 21/3, 2009 at 20:53

1

Solved

Like a few of the askers on here, I'm new to Lisp. I'm going through the Practical Common Lisp book, but took a sidestep to see how easy it would be to set up a web app, so I've been following this...
Epistaxis asked 11/7, 2013 at 13:21

2

Solved

Has anyone been able to successfully deploy an app on Heroku with the Heroku Common Lisp Buildpack using Hunchentoot? I'm getting a ! Heroku push rejected, no Cedar-supported app detected and ...
Ultimatum asked 12/3, 2012 at 2:2

2

Solved

I'm using SBCL, emacs, slime, and quicklisp to install various packages. I instantiate and start a hunchentoot acceptor like so, CL-USER> (hunchentoot:start (make-instance 'hunchentoot:accep...
Overdrive asked 2/4, 2013 at 23:7

1

Solved

I am a javascript/web application newbie and trying to implement my first web application using hunchentoot and backbone.js. The first thing I was experimenting is to understand how model.fetch() a...
Irmine asked 6/10, 2012 at 23:13

2

The Hunchentoot documentation states: "The method for ACCEPTOR tries to serve a static file relative to it's ACCEPTOR-DOCUMENT-ROOT." acceptor-document-root acceptor => (or pathname n...
Predicate asked 27/11, 2011 at 11:9

2

So far I've only tried Hunchentoot and heard about AllegroServe, ABCLweb, though I wouldn't know how they compare in performance. I was wondering, what is currently the best option for deploying a ...
Sisyphean asked 23/12, 2008 at 3:40

2

I am writing a web app that would require the hunchentoot web server. I have almost no working knowledge of hunchentoot, or any web server for that matter, and I am wondering how my app written in ...
Untrimmed asked 20/6, 2009 at 20:24
1

© 2022 - 2024 — McMap. All rights reserved.