mirror of
https://github.com/oceanprotocol/status-frontend.git
synced 2024-11-22 01:46:56 +01:00
'Updated .travis.yml'
This commit is contained in:
parent
57c039eac8
commit
957f2f4331
11
netlify/functions/hello-world.js
Normal file
11
netlify/functions/hello-world.js
Normal file
@ -0,0 +1,11 @@
|
||||
exports.handler = async () => {
|
||||
let envString = "";
|
||||
for (let key in process.env) {
|
||||
envString += `${key}: ${process.env[key]}
|
||||
`;
|
||||
}
|
||||
return {
|
||||
statusCode: 200,
|
||||
body: `hello world! I have a hotub ${envString}`,
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue
Block a user