Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arkency/nanoc-tailwind-starter
https://github.com/arkency/nanoc-tailwind-starter
nanoc parceljs tailwindcss
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/arkency/nanoc-tailwind-starter
- Owner: arkency
- Created: 2020-03-26T14:22:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-16T11:19:53.000Z (over 1 year ago)
- Last Synced: 2024-05-21T00:59:56.407Z (6 months ago)
- Topics: nanoc, parceljs, tailwindcss
- Language: Ruby
- Homepage:
- Size: 490 KB
- Stars: 9
- Watchers: 8
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nanoc + TailwindCSS
Starter kit for static sites on [nanoc](https://nanoc.ws) with TailwindCSS styling.
## Initial setup
It is assumed you already have Ruby with Bundler and Node present.
```
./bin/setup
```## Build for production
One-time processing with optimizations.
```
./bin/build
```## Build for development
Starts in foreground, live reloads HTML and CSS changes.
```
./bin/server
open http://localhost:3000/
```## Unpacking latest release into current directory
```
curl -s https://api.github.com/repos/arkency/nanoc-tailwind-starter/releases/latest |\
grep tarball_url |\
cut -d'"' -f4 |\
xargs -n 1 curl -sSL |\
tar -xz --strip-components=1
```