Skip to content

Commit

Permalink
testing env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
sahilpabale committed Jun 14, 2021
1 parent 160f8af commit 813eda7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
script: |
cd api/
git pull
git status
pm2 restart 0
2 changes: 1 addition & 1 deletion router.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const router = Router();

router.get("/", (req, res) => {
res.status(200).json({
data: null,
data: process.env.SECRET,
message: "Welcome to Orbit's API!",
});
});
Expand Down

0 comments on commit 813eda7

Please sign in to comment.