Static site for GitHub pages.
Published at https://appsoftware.com
Development / debugging of static site options:
-
Set up local NGINX
-
Set up npm and install http-server package:
$ npm init
$ npm install http-server
package.json contains run script:
"scripts": {
"dev": "http-server ."
},
Run with
$ npm run dev