-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
50f21ac
commit 303e731
Showing
108 changed files
with
26,661 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/* | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
# Shutdown Landing Page | ||
# www | ||
|
||
Short story: Run this command **before committing**. | ||
|
||
``` | ||
bash build.sh | ||
``` | ||
|
||
## CSS | ||
|
||
**DO NOT DIRECTLY MODIFY CSS** | ||
|
||
CSS is being compiled from Sass, but we are bundling everything into 1 file, located in `assets/css/staffjoy.css`. To write new CSS, write it in the appropriate `.scss` file located in the `sass/` folder, then run ```gulp``` to build it. Gulp will watch for changes and rebuild, so you can leave it running in a separate window. Your SCSS changes will spur changes in `assets/css/staffjoy.css` - **be sure to commit these**. | ||
|
||
## Building assets for Go | ||
|
||
If you make changes to assets or templates, you must run the following scripts to package your assets for the binary: | ||
|
||
``` | ||
go-bindata assets/... | ||
``` | ||
|
||
the bindata package is old and ornery, so you may need to run `gofmt -s` (with the simplification flag) or linting on it. | ||
|
||
|
Oops, something went wrong.