Skip to content

Commit 6b105a7

Browse files
Merge pull request #1 from agentico-dev/main
Merging main latest changes
2 parents 559af80 + 53ba2a3 commit 6b105a7

67 files changed

Lines changed: 3505 additions & 1965 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/deploy.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ jobs:
2424
- name: Install dependencies
2525
run: npm ci
2626

27+
# Git configuration
28+
- name: Configure Git
29+
run: |
30+
git config --global user.name "GitHub Actions"
31+
git remote set-url origin git:${{ secrets.GITHUB_TOKEN }}@github.com/agentico-dev/app.git
32+
2733
- name: Deploy to GitHub Pages
2834
run: npm run deploy
2935
env:

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# custom
22
*.ignoreme.*
3+
.ignoreme.*/**
4+
5+
# dotenv environment variable files
6+
.env*
37

48
# Logs
59
logs
@@ -25,3 +29,4 @@ dist-ssr
2529
*.njsproj
2630
*.sln
2731
*.sw?
32+

package-lock.json

Lines changed: 140 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "vite_react_shadcn_ts",
2+
"name": "agentico-dashboard",
33
"private": true,
44
"homepage": "https://app.agentico.dev/",
55
"version": "0.1.0",
@@ -14,6 +14,7 @@
1414
"deploy": "gh-pages -d dist"
1515
},
1616
"dependencies": {
17+
"@hello-pangea/dnd": "^16.6.0",
1718
"@hookform/resolvers": "^3.9.0",
1819
"@radix-ui/react-accordion": "^1.2.0",
1920
"@radix-ui/react-alert-dialog": "^1.1.1",
@@ -43,7 +44,7 @@
4344
"@radix-ui/react-toggle-group": "^1.1.0",
4445
"@radix-ui/react-tooltip": "^1.1.4",
4546
"@supabase/supabase-js": "^2.49.1",
46-
"@tanstack/react-query": "^5.56.2",
47+
"@tanstack/react-query": "^5.68.0",
4748
"caniuse-lite": "^1.0.30001703",
4849
"class-variance-authority": "^0.7.1",
4950
"clsx": "^2.1.1",
@@ -54,7 +55,6 @@
5455
"input-otp": "^1.2.4",
5556
"lucide-react": "^0.462.0",
5657
"next-themes": "^0.3.0",
57-
"pako": "^2.1.0",
5858
"react": "^18.3.1",
5959
"react-day-picker": "^8.10.1",
6060
"react-dom": "^18.3.1",
@@ -86,6 +86,6 @@
8686
"tailwindcss": "^3.4.11",
8787
"typescript": "^5.5.3",
8888
"typescript-eslint": "^8.0.1",
89-
"vite": ">=5.4.12"
89+
"vite": "^5.4.14"
9090
}
9191
}
169 KB
Loading

public/agentico-ui-0.1.0-tools.png

174 KB
Loading

public/agentico-ui-0.1.0.png

132 KB
Loading

src/App.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ const AppRoutes = () => {
102102
<Routes>
103103
<Route path="/login" element={<RedirectIfAuthenticated><LoginPage /></RedirectIfAuthenticated>} />
104104
<Route path="/register" element={<RedirectIfAuthenticated><RegisterPage /></RedirectIfAuthenticated>} />
105+
<Route path="/index" element={<LandingPage />} />
105106

106107
<Route element={<DashboardLayout />}>
107108
<Route path="/" element={<Dashboard />} />
@@ -124,12 +125,12 @@ const AppRoutes = () => {
124125
<Route path="/projs/:orgSlug@:projSlug" element={<Navigate to={`/projects/${useParams().orgSlug}@${useParams().projSlug}`} replace />} />
125126

126127
<Route path="/applications" element={<ApplicationsPage />} />
127-
<Route path="/apps" element={<Navigate to="/applications" replace />} />
128128
<Route path="/applications/new" element={<AuthenticatedRoute><NewApplicationPage /></AuthenticatedRoute>} />
129-
<Route path="/apps/new" element={<Navigate to="/applications/new" replace />} />
130129

131-
<Route path="/applications/:id" element={<AuthenticatedRoute><ApplicationDetailPage /></AuthenticatedRoute>} />
132130
<Route path="/apps/:orgSlug@:appSlug" element={<AuthenticatedRoute><ApplicationDetailPage /></AuthenticatedRoute>} />
131+
<Route path="/apps" element={<Navigate to="/applications" replace />} />
132+
<Route path="/apps/new" element={<Navigate to="/applications/new" replace />} />
133+
<Route path="/applications/:id" element={<AuthenticatedRoute><ApplicationDetailPage /></AuthenticatedRoute>} />
133134

134135
<Route path="/applications/:applicationId/apis/new" element={<AuthenticatedRoute><ApiFormPage /></AuthenticatedRoute>} />
135136
<Route path="/apps/:orgSlug@:appSlug/apis/new" element={<AuthenticatedRoute><ApiFormPage /></AuthenticatedRoute>} />

0 commit comments

Comments
 (0)