# meow meow ## ??? this is a (very early stage) static site generator written in racket ## why not frog? NIH syndrome :3 ## install ```bash # external dependencies (unfortunately i could not reasonably replace these with racket) (cd ext && cargo build) # install the package raco pkg install $PWD # ensure your PATH has racket stuff on it. replace 8.1 with your version # alternatively, you can use the capybara commands through raco export PATH=$HOME/.racket/8.1/bin:$PATH ``` ## getting started ```bash # create a new project capybara-init my-awesome-website cd my-awesome-website # start serving it (nginx is required right now) nginx -c $PWD/nginx.conf & # view your masterpiece firefox http://localhost:8080 ```