Option | Description |
---|---|
version |
We'll use the (current) version 2 of the Now platform. Version 1 will be deprecated in the future but is still fully supported. Since the platform versions are based on different concepts, the specific options are different, too. |
name |
The name of the application, usually the same as in package.json . This will be used as a label in the Now UI to identify the application. |
alias |
This is the default argument for the now alias command. The alias will point to the randomly generated subdomain where Now created your immutable deployment. You must add the domain to Now in order to use this feature. You may add multiple aliases and also use subdomains here (e.g. foo.example.org if you already added the domain example.org to Now). |
builds |
A Now application may be deployed using any of the available builders such as for Node.js, Go, Python and so on. We'll use the `static-buil |
View .zshrc
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
# https://github.com/Schniz/fnm#shell-setup | |
eval "$(fnm env --use-on-cd)" | |
# https://github.com/junegunn/fzf#using-homebrew | |
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh | |
# https://docs.brew.sh/Shell-Completion#configuring-completions-in-zsh | |
if type brew &>/dev/null | |
then | |
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}" |
View package.json
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
{ | |
"name": "send-in-blue-wrapper", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"keywords": [], | |
"author": "", |
View index.ts
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
import fetch from "node-fetch"; | |
import imageSize from "image-size"; | |
import { GraphQLClient, gql } from "graphql-request"; | |
const ENDPOINT = | |
"https://api-eu-central-1.graphcms.com/v2/myProject/master"; | |
const TOKEN = | |
"myTokenWithMutationPrivileges"; | |
type Asset = Record<"id" | "handle" | "url", string> & |
View input.story.js
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
export const defaultStory = () => <StatusDot />; |
View input.story.js
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
export const usePlaceholder = () => ( | |
<TextField placeholder="I am a placeholder" /> | |
); | |
usePlaceholder.story = { | |
name: 'use placeholder' | |
}; |
View now-options.md
View main.workflow
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
workflow "Deploy to Now" { | |
on = "push" | |
resolves = [ | |
"Alias", | |
"Filter out master branch", | |
] | |
} | |
action "Deploy" { | |
uses = "actions/zeit-now@master" |
View package.json
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
{ | |
"name": "jetztein", | |
"scripts": { | |
"start": "react-scripts start", | |
"build": "react-scripts build", | |
"test": "react-scripts test", | |
"now-build": "npm run build && mv build dist" | |
} | |
} |
View now.json
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
{ | |
"version": 2, | |
"name": "jetztein", | |
"alias": "jetztein.de", | |
"builds": [{ "src": "package.json", "use": "@now/static-build" }], | |
"regions": ["bru"], | |
"routes": [ | |
{ "src": "^/static/(.*)", "dest": "/static/$1" }, | |
{ "src": "^/favicon.ico", "dest": "/favicon.ico" }, | |
{ "src": "^/asset-manifest.json", "dest": "/asset-manifest.json" }, |
View Dockerfile
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 is a multi-stage build to not spill the contents of the deploy_key | |
FROM mhart/alpine-node:10 as base | |
# We need git and openssh to resolve `git+ssh` links in package.json | |
RUN apk update \ | |
&& apk add git openssh | |
WORKDIR /usr/src | |
COPY package*.json ./ |
NewerOlder