I've installed Snap/Haskell on my production Ubuntu server (on EC2), and checked-out my project - but how do I run it?
I mean, locally, I run it from command line:
project-name -p 8000
Does snap come with it's own web-server (it looks like it), and if so how do I go about configuring it to run as a daemon of some sort?
Any tips?
Edit 2:
On the wiki they say:
snap-server is an HTTP server library that supports the interface defined in snap-core.
While here, the haskell wiki about "Deployment/Backend options for your haskell web code" says that Snap:
includes its own server. see Web/Frameworks
But HOW? How would I run it's own server? Why must I know about deployment of the damn thing if I am just interested in programming...
Edit: related question: Deploy Haskell code that uses the Snap Framework