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.

24 lines
500 B

2 years ago
# tait.tech
The uncompiled version of my website. Compiled files in _site
2 years ago
2 years ago
### To compile
To compile the files, simply use the bundle Ruby gem.
```
bundle exec jekyll build
```
to compile once. If you decide you want to actually have changes appear instantly, use the following
```
bundle exec jekyll watch
```
To run a local web server to view the changes on:
```
bundle exec jekyll server -w
```
This will watch for the latest changes, compile them, and make them available on localhost:4000