Skip to content

Commit 18eeab6

Browse files
CopilotVAIBHAVSING
andcommitted
Successfully merged main branch with production agent code
Co-authored-by: VAIBHAVSING <[email protected]>
1 parent b69a60b commit 18eeab6

File tree

4 files changed

+0
-86
lines changed

4 files changed

+0
-86
lines changed

apps/agent/Makefile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Makefile for Go Agent Development
2-
<<<<<<< HEAD
3-
.PHONY: build clean test lint format dev deps help install-tools
4-
=======
52
.PHONY: build clean test lint format dev deps help install-tools config-dev-aca config-prod-aci config-show config-validate
6-
>>>>>>> 6c208e89cfd9111d6f3217b9f725aebcc95d9627
73

84
# Go parameters
95
GOCMD=go
@@ -67,8 +63,6 @@ all: deps format lint test build ## Run all checks and build
6763

6864
check: format-check lint test ## Run all checks without building
6965

70-
<<<<<<< HEAD
71-
=======
7266
# ============================================================================
7367
# Azure Configuration Management
7468
# ============================================================================
@@ -121,5 +115,4 @@ config-validate: ## Validate .env configuration
121115
exit 1; \
122116
fi
123117

124-
>>>>>>> 6c208e89cfd9111d6f3217b9f725aebcc95d9627
125118
.DEFAULT_GOAL := help

apps/agent/setup-go-tools.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ echo "✅ Go $(go version | cut -d' ' -f3) found"
1515
# Install golangci-lint if not present
1616
if ! command -v golangci-lint &> /dev/null; then
1717
echo "📦 Installing golangci-lint..."
18-
<<<<<<< HEAD
19-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.2
20-
=======
2118
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin latest
22-
>>>>>>> 6c208e89cfd9111d6f3217b9f725aebcc95d9627
2319

2420
# Add to PATH if needed
2521
if [[ ":$PATH:" != *":$(go env GOPATH)/bin:"* ]]; then

apps/web/prisma/schema.prisma

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,6 @@ datasource db {
1111
}
1212

1313
model User {
14-
<<<<<<< HEAD
15-
id String @id @default(cuid())
16-
name String?
17-
email String @unique
18-
emailVerified DateTime?
19-
image String?
20-
password String? // For credentials authentication
21-
accounts Account[]
22-
sessions Session[]
23-
// Optional for WebAuthn support
24-
Authenticator Authenticator[]
25-
=======
2614
id String @id @default(cuid())
2715
name String?
2816
email String @unique
@@ -36,7 +24,6 @@ model User {
3624
sshKeys SSHKey[]
3725
secrets Secret[]
3826
workspaces Workspace[]
39-
>>>>>>> 6c208e89cfd9111d6f3217b9f725aebcc95d9627
4027
4128
createdAt DateTime @default(now())
4229
updatedAt DateTime @updatedAt
@@ -96,8 +83,6 @@ model Authenticator {
9683
9784
@@id([userId, credentialID])
9885
}
99-
<<<<<<< HEAD
100-
=======
10186

10287
enum EnvironmentStatus {
10388
CREATING
@@ -426,4 +411,3 @@ model Backup {
426411
@@index([startedAt])
427412
@@map("backups")
428413
}
429-
>>>>>>> 6c208e89cfd9111d6f3217b9f725aebcc95d9627

apps/web/tailwind.config.js

Lines changed: 0 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,12 @@
11
/** @type {import('tailwindcss').Config} */
22
export default {
3-
<<<<<<< HEAD
4-
darkMode: ['class'],
5-
content: [
6-
=======
73
content: [
8-
>>>>>>> 6c208e89cfd9111d6f3217b9f725aebcc95d9627
94
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
105
'./components/**/*.{js,ts,jsx,tsx,mdx}',
116
'./app/**/*.{js,ts,jsx,tsx,mdx}',
127
],
138
theme: {
14-
<<<<<<< HEAD
15-
extend: {
16-
borderRadius: {
17-
lg: 'var(--radius)',
18-
md: 'calc(var(--radius) - 2px)',
19-
sm: 'calc(var(--radius) - 4px)'
20-
},
21-
colors: {
22-
background: 'hsl(var(--background))',
23-
foreground: 'hsl(var(--foreground))',
24-
card: {
25-
DEFAULT: 'hsl(var(--card))',
26-
foreground: 'hsl(var(--card-foreground))'
27-
},
28-
popover: {
29-
DEFAULT: 'hsl(var(--popover))',
30-
foreground: 'hsl(var(--popover-foreground))'
31-
},
32-
primary: {
33-
DEFAULT: 'hsl(var(--primary))',
34-
foreground: 'hsl(var(--primary-foreground))'
35-
},
36-
secondary: {
37-
DEFAULT: 'hsl(var(--secondary))',
38-
foreground: 'hsl(var(--secondary-foreground))'
39-
},
40-
muted: {
41-
DEFAULT: 'hsl(var(--muted))',
42-
foreground: 'hsl(var(--muted-foreground))'
43-
},
44-
accent: {
45-
DEFAULT: 'hsl(var(--accent))',
46-
foreground: 'hsl(var(--accent-foreground))'
47-
},
48-
destructive: {
49-
DEFAULT: 'hsl(var(--destructive))',
50-
foreground: 'hsl(var(--destructive-foreground))'
51-
},
52-
border: 'hsl(var(--border))',
53-
input: 'hsl(var(--input))',
54-
ring: 'hsl(var(--ring))',
55-
chart: {
56-
'1': 'hsl(var(--chart-1))',
57-
'2': 'hsl(var(--chart-2))',
58-
'3': 'hsl(var(--chart-3))',
59-
'4': 'hsl(var(--chart-4))',
60-
'5': 'hsl(var(--chart-5))'
61-
}
62-
}
63-
}
64-
},
65-
plugins: [require("tailwindcss-animate")],
66-
=======
679
extend: {},
6810
},
6911
plugins: [],
70-
>>>>>>> 6c208e89cfd9111d6f3217b9f725aebcc95d9627
7112
}

0 commit comments

Comments
 (0)