image uploader for the digital yacht club written in Chicken Scheme. See documentation.md for more info. The source code is public domain.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
336B

  1. ;;NO RIGHTS RESERVED. CC0 Public domain
  2. ;;written for Burden
  3. ;;simple web server for an image-hosting platform
  4. ;;requires chicken scheme interpreter, sqlite3 and openssl
  5. (import
  6. (chicken base)
  7. (chicken io)
  8. spiffy
  9. ))
  10. ;;define basic variables
  11. (define default_port 80)
  12. ;;startup the server
  13. (define (server_startup)
  14. (start-server)
  15. )