statping/source/doc.go

18 lines
635 B
Go
Raw Normal View History

2018-12-04 05:57:11 +00:00
// Package source holds all the assets for Statping. This includes
// CSS, JS, SCSS, HTML and other website related content.
// This package uses Rice to compile all assets into a single 'rice-box.go' file.
//
2018-10-08 04:37:23 +00:00
// Required Dependencies
//
// - rice -> https://github.com/GeertJohan/go.rice
// - sass -> https://sass-lang.com/install
//
// Compile Assets
//
// To compile all the HTML, JS, SCSS, CSS and image assets you'll need to have rice and sass installed on your local system.
// sass source/scss/base.scss source/css/base.css
// cd source && rice embed-go
//
2020-03-09 18:17:55 +00:00
// More info on: https://github.com/statping/statping
package source