Move the startup file

This commit is contained in:
Cadence Ember 2022-08-23 22:43:44 +12:00
parent 80f03aac18
commit 1ae323fa5e
Signed by: cadence
GPG Key ID: BC1C2C61CF521B17
2 changed files with 10 additions and 7 deletions

3
.gitignore vendored
View File

@ -8,5 +8,8 @@
*.typedattempt
*.untyped
# Compiled
compiled
# Personal
/config.txt

View File

@ -8,12 +8,12 @@
(prefix-in lift: web-server/dispatchers/dispatch-lift)
(prefix-in filter: web-server/dispatchers/dispatch-filter)
(prefix-in files: web-server/dispatchers/dispatch-files)
"config.rkt"
"page-category.rkt"
"page-not-found.rkt"
"page-proxy.rkt"
"page-wiki.rkt"
"page-search.rkt")
"src/config.rkt"
"src/page-category.rkt"
"src/page-not-found.rkt"
"src/page-proxy.rkt"
"src/page-wiki.rkt"
"src/page-search.rkt")
(define mime-types
(hash #".css" #"text/css"
@ -30,7 +30,7 @@
(filter:make #rx"^/static/" (files:make
#:url->path
(lambda (u)
((make-url->path "../static")
((make-url->path "static")
(struct-copy url u [path (cdr (url-path u))])))
#:path->mime-type
(lambda (u)