From ab04fdf76a34d1b509b5425723dd2f520fecd75f Mon Sep 17 00:00:00 2001 From: b1ek Date: Fri, 21 Apr 2023 08:50:07 +1000 Subject: [PATCH] add base of project --- README.md | 17 +++++++++++++++++ package.json | 7 +++++++ 2 files changed, 24 insertions(+) create mode 100644 README.md create mode 100644 package.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..76e3504 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# blek.is-a.dev source code +Hi there! This is the source code of my is-a.dev page. + +It is published mainly for a skills show-off, but also could be used as a template for your page. + +# Building +**Warning: This uses `yarn`. Building with `npm` could produce errors.** + +```sh +$ git clone git.blek.codes/blek/imadev +$ cd imadev +$ yarn install +$ yarn run prod-build +``` + +# Development +Clone the code and run `dev` script with yarn. It will start a development server. diff --git a/package.json b/package.json new file mode 100644 index 0000000..bb1d76a --- /dev/null +++ b/package.json @@ -0,0 +1,7 @@ +{ + "name": "im-a-dev", + "version": "1.0.0", + "main": "index.js", + "author": "blek", + "license": "MIT" +}