Skip to content

Commit

Permalink
Update Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sukhendu2002 committed Mar 15, 2024
1 parent a464d76 commit 42e5ae3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install Dependencies
run: pnpm install

- name: Create .env file
run: |
touch .env
echo "${{ secrets.PROD_SEC }}" >> .env
# - name: Create .env file
# run: |
# touch .env
# echo "${{ secrets.PROD_SEC }}" >> .env
2 changes: 1 addition & 1 deletion server/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ app.use("/api/auth", authRoutes);
app.use("/api/websites", websiteRoutes);
app.use("/api/monitoring", monitorRoutes);

app.get("/", (req, res) => {
app.get("/api", (req, res) => {
res.send("Hello World");
});

Expand Down

0 comments on commit 42e5ae3

Please sign in to comment.