-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Set defaults for gunicorn * Ignore output directory * Fix redirected URLs * Add link to songs * Add 'make dist' * Update 'make deploy' * Fix broken URLs * Tweak wget * Fix redirects * Add servers to Makefile * Add single make target for build * Force https for cloudinary * Use https for src in content * Use https when making static HTML * Revert "Force https for cloudinary" This reverts commit 6ab7c0b57ec303bc5acc14af7a4f2445c2cc9c40. * Deploy to Netlify Removing IE hack that cause a failure * make update in dist * Use Cloudinary for /files * Move redirects to Netlify config * Update docs * Add 404 page
- Loading branch information
1 parent
13d2698
commit dc41591
Showing
14 changed files
with
180 additions
and
102 deletions.
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 |
---|---|---|
|
@@ -13,3 +13,6 @@ media | |
.env | ||
.gunicorn | ||
.envrc | ||
dist/ | ||
*.pem | ||
.netlify |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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,37 @@ | ||
[build] | ||
publish = "dist/" | ||
|
||
[dev] | ||
port = 8000 | ||
|
||
[[redirects]] | ||
from = "/calendar/*" | ||
to = "/live/" | ||
|
||
[[redirects]] | ||
from = "/music/releases/*" | ||
to = "/music/:splat" | ||
|
||
[[redirects]] | ||
from = "/music/songs/*" | ||
to = "/songs/:splat" | ||
|
||
[[redirects]] | ||
from = "/iu-advance" | ||
to = "/music/im-you/" | ||
|
||
[[redirects]] | ||
from = "/abistfo" | ||
to = "/music/a-band-is-something-to-figure-out/" | ||
|
||
[[redirects]] | ||
from = "/hyedse" | ||
to = "/music/have-you-ever-done-something-evil/" | ||
|
||
[[redirects]] | ||
from = "/nokwhn" | ||
to = "/music/no-one-knows-what-happens-next/" | ||
|
||
[[redirects]] | ||
from = "/portrait" | ||
to = "/music/portrait/" |