Skip to content

Latest commit

 

History

History
 
 

bash

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Bash

In this example we will be deploying a simple "Hello World" example with Bash.

Getting started with Bash

  • Create a index.sh file with the following code:
handler() {
  echo "Hello from \`@now/bash\` on Now 2.0!"
}

Deploy with Now

First we need to create a now.json configuration file to instruct Now how to build the project.

For this example we will be using our newest version Now 2.0.

By adding the version key to the now.json file, we can specify which Now Platform version to use.

We also need to define each builder we would like to use. Builders are modules that take a deployment's source and return an output, consisting of either static files or dynamic Lambdas.

In this case we are going to use @now/bash to build and deploy the Bash file. We will also define a name for our project (optional).

{
    "version": 2,
    "name": "bash-example",
    "builds": [
        { "src": "*.sh", "use": "@now/bash" }
    ]
}

Visit our documentation for more information on the now.json configuration file.

We are now ready to deploy the app.

now