Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
3ddbac7
Refactor: Add slug to Application, Project, and Server interfaces
adrianescutia Mar 16, 2025
0eadb35
Implement drag and drop functionality
lovable-dev[bot] Mar 16, 2025
631326a
Run database schema updates
lovable-dev[bot] Mar 16, 2025
25c1e3d
chore: update @tanstack/react-query to version 5.68.0
adrianescutia Mar 17, 2025
f38eb3f
Run reviewed SQL queries
lovable-dev[bot] Mar 17, 2025
1736305
chore: rename project to agentico-dashboard
adrianescutia Mar 17, 2025
1935d40
Enhance API Source Section
lovable-dev[bot] Mar 18, 2025
77397d0
refactor: update import statements for consistency and clarity
adrianescutia Mar 18, 2025
063e106
feat: add URI validation and tooltip feedback in ApiSourceSection
adrianescutia Mar 18, 2025
aae9494
chore: bump vite version to fix CWE-346
adrianescutia Mar 18, 2025
230723f
Fix API content decompression error
lovable-dev[bot] Mar 18, 2025
38514c9
Refactor ApiSourceSection component
lovable-dev[bot] Mar 18, 2025
36e5b79
Refactor application APIs hook
lovable-dev[bot] Mar 18, 2025
def5239
[deploy] refactor: remove pako dependency and cahnge from bytea to js…
adrianescutia Mar 18, 2025
6b045b2
Refactor Application Detail Page
lovable-dev[bot] Mar 18, 2025
6e4a2a1
Add loading states to lists
lovable-dev[bot] Mar 18, 2025
7070176
Implement notification logic
lovable-dev[bot] Mar 18, 2025
9cafdb1
Run reviewed SQL scripts
lovable-dev[bot] Mar 18, 2025
6be6f41
Refactor useNotifications hook
lovable-dev[bot] Mar 18, 2025
2d0a10b
Configure Git settings in CI workflow and update notification mutatio…
adrianescutia Mar 18, 2025
fa2b8ae
Add ErrorBoundary component and update default tab in ProjectTabs
adrianescutia Mar 19, 2025
22d5811
Refactor API form components
lovable-dev[bot] Mar 19, 2025
1ac3081
update form validation to include archived status and compress/decomp…
adrianescutia Mar 19, 2025
e0b8bbd
Fix form context error
lovable-dev[bot] Mar 19, 2025
f526dfe
Update ServerTabs default tab, enhance LandingPage descriptions, and …
adrianescutia Mar 19, 2025
c546345
Fix: Update services query to filter by API
lovable-dev[bot] Mar 20, 2025
33f3e19
Update .gitignore to exclude nested ignoreme files
adrianescutia Mar 20, 2025
da52302
Populate ProjectResourceCards with data
lovable-dev[bot] Mar 20, 2025
42258f9
Fix: ProjectResourceCards to improve application and server count ret…
adrianescutia Mar 20, 2025
2473ec9
Refactor and unify API form
lovable-dev[bot] Mar 21, 2025
bd48bba
Fix API form submission
lovable-dev[bot] Mar 21, 2025
131cee7
Fix: Restore create API button
lovable-dev[bot] Mar 21, 2025
98d5d52
Refactor API form controller
lovable-dev[bot] Mar 21, 2025
b753832
Refactor ApiForm into smaller components
lovable-dev[bot] Mar 21, 2025
ce9d75e
Restore URN generation functionality
lovable-dev[bot] Mar 22, 2025
1bae24f
Fix URN generation and remove FormTabs
lovable-dev[bot] Mar 22, 2025
15bcbea
Fix error in ApiFormController
lovable-dev[bot] Mar 22, 2025
1d84b73
FIX: 🛠️Handle the content vs URI logic in ApiForm, ApiSourceSection, …
adrianescutia Mar 22, 2025
4902881
Add Messages and Services Tabs
lovable-dev[bot] Mar 22, 2025
a01a276
[deploy] chore: remove unused fields, and enhance application types
adrianescutia Mar 22, 2025
ab805a5
Update [deploy].yaml
adrianescutia Mar 22, 2025
0fd8a94
Update [deploy].yaml
adrianescutia Mar 22, 2025
1558bf4
Adding .git Update [deploy].yaml
adrianescutia Mar 22, 2025
dafc66d
Adding back org to url [deploy].yaml
adrianescutia Mar 22, 2025
be8e9c7
Removing repo name [deploy].yaml
adrianescutia Mar 22, 2025
0224b01
Changing to ssh with git user [deploy].yaml
adrianescutia Mar 23, 2025
7fb1b32
Enhance Vite configuration for better React and dependency chunking; …
adrianescutia Mar 23, 2025
3b34bef
Add @tanstack/react-query to Vite vendor chunking for improved depend…
adrianescutia Mar 24, 2025
af3db34
Add Supabase configuration to .env and update client integration
adrianescutia Mar 25, 2025
53ba2a3
Remove .env file containing sensitive Supabase configuration
adrianescutia Mar 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env

This file was deleted.

6 changes: 6 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
- name: Install dependencies
run: npm ci

# Git configuration
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git remote set-url origin git:${{ secrets.GITHUB_TOKEN }}@github.com/agentico-dev/app.git

- name: Deploy to GitHub Pages
run: npm run deploy
env:
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# custom
*.ignoreme.*
.ignoreme.*/**

# dotenv environment variable files
.env*

# Logs
logs
Expand All @@ -25,3 +29,4 @@ dist-ssr
*.njsproj
*.sln
*.sw?

160 changes: 140 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "vite_react_shadcn_ts",
"name": "agentico-dashboard",
"private": true,
"homepage": "https://app.agentico.dev/",
"version": "0.1.0",
Expand All @@ -14,6 +14,7 @@
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@hello-pangea/dnd": "^16.6.0",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
Expand Down Expand Up @@ -43,7 +44,7 @@
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@supabase/supabase-js": "^2.49.1",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query": "^5.68.0",
"caniuse-lite": "^1.0.30001703",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
Expand All @@ -54,7 +55,6 @@
"input-otp": "^1.2.4",
"lucide-react": "^0.462.0",
"next-themes": "^0.3.0",
"pako": "^2.1.0",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
Expand Down Expand Up @@ -86,6 +86,6 @@
"tailwindcss": "^3.4.11",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vite": ">=5.4.12"
"vite": "^5.4.14"
}
}
Binary file added public/agentico-ui-0.1.0-projects.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/agentico-ui-0.1.0-tools.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/agentico-ui-0.1.0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ const AppRoutes = () => {
<Routes>
<Route path="/login" element={<RedirectIfAuthenticated><LoginPage /></RedirectIfAuthenticated>} />
<Route path="/register" element={<RedirectIfAuthenticated><RegisterPage /></RedirectIfAuthenticated>} />
<Route path="/index" element={<LandingPage />} />

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

<Route path="/applications" element={<ApplicationsPage />} />
<Route path="/apps" element={<Navigate to="/applications" replace />} />
<Route path="/applications/new" element={<AuthenticatedRoute><NewApplicationPage /></AuthenticatedRoute>} />
<Route path="/apps/new" element={<Navigate to="/applications/new" replace />} />

<Route path="/applications/:id" element={<AuthenticatedRoute><ApplicationDetailPage /></AuthenticatedRoute>} />
<Route path="/apps/:orgSlug@:appSlug" element={<AuthenticatedRoute><ApplicationDetailPage /></AuthenticatedRoute>} />
<Route path="/apps" element={<Navigate to="/applications" replace />} />
<Route path="/apps/new" element={<Navigate to="/applications/new" replace />} />
<Route path="/applications/:id" element={<AuthenticatedRoute><ApplicationDetailPage /></AuthenticatedRoute>} />

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