commit c14e8f057039312676f10889bb5cfe87d03c2226 Author: He4eT Date: Fri Oct 30 00:13:55 2020 +0500 nanogen: init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..36da2cc --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +node_modules +/docs + +# Log files +npm-debug.log* diff --git a/package.json b/package.json new file mode 100644 index 0000000..ed2132a --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "oddsquat", + "version": "1.0.0", + "description": "", + "main": "site.config.js", + "scripts": { + "start": "nanogen start", + "build": "nanogen build" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "nanogen": "^0.4.2" + } +} diff --git a/site.config.js b/site.config.js new file mode 100755 index 0000000..392fdf2 --- /dev/null +++ b/site.config.js @@ -0,0 +1,9 @@ +module.exports = { + build: { + srcPath: './src', + outputPath: './docs' + }, + site: { + title: 'oddsquat' + } +};