A modern, simplified blog application that let's you focus your work instead of maintaining your application.
First, install the required packages:
npm install
# or
yarn install
Then, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
Before getting into anything, let's change what needs to be changed first. Go to data
and open info.js
and edit the variable values. For example,
All application data are stored inside data
directory. Editing them will take effect on the whole site, wherever they are used.
Blog posts are stored inside data
> posts
directory. Place new files in the directory and let the application do its work.
Please check Wiki: How-To for detailed information.
N:B: Make sure to build the app and update your production files in your CDN or server.
Maintain cleen code > follow directory structure > test your code > Submit PR!