FLUTTER ECOSYSTEM

Flutter-Bounty-Hunters/static_shock

Dart용 정적 사이트 생성기입니다.

정전기 프로젝트 이미지
Stars
160
Forks
9
최근 푸시(UTC)
2025. 8. 2.
프로젝트 상태
활성
Flutter Bounty Hunters GitHub avatar
GITHUB Organization

Flutter Bounty Hunters ↗

We build open source Flutter and Dart tools.

언어DartJinjaSCSSHTMLSassCSS

이 저장소가 배포한 패키지

사용 중인 의존성

의존성 목록 1 개
  • melos개발 의존성^5.3.0

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

Static Shock - A static site generator, written in Dart

Built by the Flutter Bounty Hunters


For documentation, visit staticshock.io

Quickstart

Generate a new Static Shock project with static_shock_cli:

# Activate the CLI tool.
dart pub global activate static_shock_cli

# Generate a new project.
shock create

Once you've created a project, you can (re)build your static site as needed:

# Build directly
dart bin/main.dart

# Or, build with the CLI tool
shock build

To demo your static site, run a local server from your project directory, using the CLI tool:

shock serve

The local server automatically rebuilds and reloads your pages as you work.

Packages

Packages in this repository:

  • /packages/static_shock_cli: project that implements the Static Shock CLI tool.
  • /packages/static_shock: the core of Static Shock, which builds static websites.
  • /packages/static_shock_docs: the website for Static Shock documentation.

Development

This repository is a mono-repo. To work with it, you need Melos available on your path:

dart pub global activate melos

When you first open the root of the project for development, bootstrap Melos:

melos bootstrap