Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 985 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 985 Bytes

Tapestry Website

Source for Tapestry website and documentation

License

About this repository

This is the source code repository for the documentation website tapestry.cloud. It provides documentation for the Tapestry static site generator.

Installing

To install a copy locally run the following steps:

# Clone a local copy of this repository
git clone https://github.com/tapestry-cloud/tapestry-cloud-src.git

# Install PHP dependencies (for Tapestry) and node dependencies (for building assets)
composer install && yarn install

# Execute the build task with gulp
gulp build

# Use the basic http server built into PHP to serve the content of `build_local` to 127.0.0.1:3000
php -S 127.0.0.1:3000 -t build_local