From 5065bbd61286e5942815ee2b31969203029764d0 Mon Sep 17 00:00:00 2001 From: Max Wofford Date: Sat, 18 Jul 2020 14:11:46 -0400 Subject: [PATCH] Hello world --- .gitignore | 1 + README.md | 0 api/new.js | 9 +++++++++ 3 files changed, 10 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 api/new.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2eea525 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/api/new.js b/api/new.js new file mode 100644 index 0000000..a16c60b --- /dev/null +++ b/api/new.js @@ -0,0 +1,9 @@ +// process.env. + +// https://api.vercel.com/v2/now/files + +// https://api.vercel/v12/now/files + +export default (req, res) => { + res.json({ ping: 'pong' }) +} \ No newline at end of file