Skip to content

Commit c31c286

Browse files
committed
Web Deployement - Complete Application
Signed-off-by: Arya Pratap Singh <notaryasingh@gmail.com>
1 parent 3a80b4c commit c31c286

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ name: Trigger Render Deploy
22

33
on:
44
schedule:
5-
- cron: '*/45 * * * *' # every 45 minutes
5+
- cron: '*/15 * * * *' # every 15 minutes
66

77
jobs:
88
ping-render:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Call Render Deploy Hook
1212
run: |
13-
curl https://learn-coding-with-copilotkit.onrender.com/copilotkit
13+
curl https://learn-coding-with-copilotkit.onrender.com/copilotkit
14+
curl https://learn-coding-with-copilotkit-1.onrender.com/copilotkit

README.md

+20-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11

2-
# Learn Coding with CopilotKit, CoAgents, and LangGraphs 🚀
32

4-
[![CopilotKit](https://img.shields.io/badge/Powered%20By-CopilotKit-brightgreen)](https://github.com/copilotkit)
5-
[![Frontend: Next.js](https://img.shields.io/badge/Frontend-Next.js-orange)](https://nextjs.org/)
6-
[![Demo Video](https://img.shields.io/badge/Watch-Demo%20Video-red)](https://youtu.be/E1q67IDcdMU)
7-
[![Website](https://img.shields.io/badge/Website-Live-brightgreen)](https://learn-coding-with-copilotkit.vercel.app/)
3+
<div align="center">
4+
5+
# Learn Coding with CopilotKit, CoAgents, and LangGraphs 🚀
6+
<img src="./screenshots/cover.png" alt="Cover Image" />
7+
</div>
8+
9+
<div align="center">
10+
<a href="https://github.com/copilotkit">
11+
<img src="https://img.shields.io/badge/Powered%20By-CopilotKit-brightgreen" alt="CopilotKit Badge" />
12+
</a>
13+
<a href="https://nextjs.org/">
14+
<img src="https://img.shields.io/badge/Frontend-Next.js-orange" alt="Frontend: Next.js Badge" />
15+
</a>
16+
<a href="https://youtu.be/E1q67IDcdMU">
17+
<img src="https://img.shields.io/badge/Watch-Demo%20Video-red" alt="Demo Video Badge" />
18+
</a>
19+
<a href="https://learn-coding-with-copilotkit.vercel.app/">
20+
<img src="https://img.shields.io/badge/Website-Live-brightgreen" alt="Website Badge" />
21+
</a>
22+
</div>
823

924
---
1025

frontend-interface/app/api/copilotkit/route.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const runtime = new CopilotRuntime(
1212
{
1313
remoteEndpoints: [
1414
{
15-
url: process.env.REMOTE_ACTION_URL || "http://localhost:8000/copilotkit" || "https://learn-coding-with-copilotkit.onrender.com/copilotkit",
15+
url: process.env.REMOTE_ACTION_URL || "https://learn-coding-with-copilotkit-1.onrender.com/copilotkit" || "http://localhost:8000/copilotkit",
1616
},
1717
],
1818
}

screenshots/cover.png

83.8 KB
Loading

0 commit comments

Comments
 (0)