Created
March 23, 2017 19:31
-
-
Save domachine/3ca4cfdb95ea4276d2891761540eed0b to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
if [[ $NODE_ENV != production ]]; then | |
echo 'start: This is intended for production, use `npm run serve` instead' | |
exit 1 | |
fi | |
test -f .env && source .env | |
penguin run \ | |
--port "${PORT=3000}" \ | |
--database-driver [ penguin.js/pg --url "$DATABASE_URL" ] \ | |
--publish-driver \ | |
[ penguin.js/git \ | |
--url "$npm_package_repository_url" \ | |
--branch gh-pages ] \ | |
--middleware \ | |
[ penguin-passwordless \ | |
--delivery \ | |
[ penguin-passwordless-postmark \ | |
--apiKey "$POSTMARK_API_KEY" \ | |
--from [email protected] \ | |
--subject 'Login zu Ihrer Website' \ | |
--url "$URL" ] \ | |
--pg-url "$DATABASE_URL" \ | |
--redis-url "$REDIS_URL" \ | |
--cookie [ --secret "$COOKIE_SECRET" ] \ | |
--failure-redirect '/de/login' \ | |
--sent-redirect '/de/login?success=1' ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment