Quick Start
S.H.E.V.K.Y. is very easy to install and use. Just follow the steps below to set up a demo blog and generate the base structure for your project.
npm init -y
npm install --save-dev shevkyThe commands above install everything you need. For a sample project, run:
npx shevy --initThat is enough to bootstrap the project.
npx shevky --devThis command prepares the project and serves it locally at http://localhost:3000. If you make changes to the code, run:
npx shevky --buildIf you used --init, the required scripts are added to package.json automatically. In other words, the following commands will be ready to use:
npm run dev
npm run build