Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rajasegar/cl-webapp-seed
A simple web application boilerplate using Common Lisp
https://github.com/rajasegar/cl-webapp-seed
common-lisp lisp
Last synced: about 2 months ago
JSON representation
A simple web application boilerplate using Common Lisp
- Host: GitHub
- URL: https://github.com/rajasegar/cl-webapp-seed
- Owner: rajasegar
- License: mit
- Created: 2016-09-15T10:04:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-08-30T08:37:44.000Z (over 2 years ago)
- Last Synced: 2024-10-24T15:05:53.116Z (3 months ago)
- Topics: common-lisp, lisp
- Language: Common Lisp
- Size: 125 KB
- Stars: 6
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cl-webapp-seed
A simple web application boilerplate using Common Lisp## Dependencies
- Hunchentoot
- cl-whoTo run the demo locally, clone the repo and load it in you LISP environment.
Eg: In SBCL
```lisp
(ql:quickload :hello-world)
```Then start the server
```lisp
(initialize-application :port 3000)
```## Deployment
To deploy your app in a PaaS like Heroku, use the following buildpack```
heroku apps:create hello-world --buildpack https://gitlab.com/duncan-bayne/heroku-buildpack-common-lisp
```# Deploy it.
```
git push heroku master
```# Open it in a browser.
```
heroku open
```