Created: 2017 May 30th
Updated: 2020 April 18th
Edit this page on GitHubThe awesome now from zeit! It has a great cli with probably all of
this detailed in there under -h
somewhere π
Need to add a verification for something like the Google Search console.
Got your own domain name? You can alias your latest now
deployment
Want your site to not get frozen? And have visitors have to wait for the instance to spin up?
This is straight from the CLI with now scale -h
Config stuff I always forget!
If itβs keys, then use secrets and configure them in the
package.json
:
If you have a lot of configuration variables and you dont want to make
a mess in the package.json
:
That will pull your .env
file and use that in place of adding
individual vars via now -e var
. I have always used dotenv
and I
understand that now
uses dotenv
for this and using without is
untested by me?