Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/slybridges/kiss-starter
Starter boilerplate for kiss site generator
https://github.com/slybridges/kiss-starter
Last synced: 22 days ago
JSON representation
Starter boilerplate for kiss site generator
- Host: GitHub
- URL: https://github.com/slybridges/kiss-starter
- Owner: slybridges
- Created: 2021-04-11T13:19:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-16T12:21:17.000Z (about 1 month ago)
- Last Synced: 2024-10-18T04:37:16.635Z (about 1 month ago)
- Language: JavaScript
- Size: 785 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kiss-starter: starter boilerplate for the kiss site generator
## Installation
```shell
# Clone this repo
mkdir my-static-site
cd my-static-site
git clone https://github.com/slybridges/kiss-starter.git .# Remove history and start your own git repo
rm -rf .git
git init# Install dependencies
npm install
```## Start the development server
```shell
npm start
```## Make it your own
- Update `kiss.config.js` and `package.json`
- Content sits in the `content/` directory
- Design sits in the `theme/` directory
- Generated site sits in the `public/` directory## Make a production build
```shell
NODE_ENV=production npm run build
```