Skip to content

Commit

Permalink
Add .nvmrc.
Browse files Browse the repository at this point in the history
nvm is a piece of software which manages NodeJS and NPM versions.
An .nvmrc specifies the version of Node to use. This is not really
required; we are not actually using a Node webserver to host the site,
just to build it. But it's convenient to have around in case you
already are using nvm for other things.
  • Loading branch information
n-rook committed Dec 26, 2023
1 parent e038b4e commit c88d274
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
20.10.0

7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ The blog itself is hosted on GitHub pages.

# How do I make changes?

First, install 11ty (with the package.json included). Then, change
the content directory. You can run `npm run build -- --serve` to preview
your changes locally.
First, install nodejs and npm; you can use nvm (see the .nvmrc) but you can
also just directly install NodeJS 20 if you like. Next, install 11ty (with
the package.json included). Then, change the content directory. You can
run `npm run build -- --serve` to preview your changes locally.

# Note on license

Expand Down

0 comments on commit c88d274

Please sign in to comment.