Skip to content

Commit 2d67ae9

Browse files
committed
chore(frontend): add VSCode config and frontend implementation
1 parent b2edbcd commit 2d67ae9

File tree

30,654 files changed

+43
-0
lines changed

Some content is hidden

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

30,654 files changed

+43
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

Frontend/.gitignore

Whitespace-only changes.

Frontend/.replit

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
modules = ["nodejs-20", "web", "postgresql-16"]
2+
run = "npm run dev"
3+
hidden = [".config", ".git", "generated-icon.png", "node_modules", "dist"]
4+
5+
[nix]
6+
channel = "stable-24_05"
7+
8+
[deployment]
9+
deploymentTarget = "cloudrun"
10+
build = ["npm", "run", "build"]
11+
run = ["npm", "run", "start"]
12+
13+
[[ports]]
14+
localPort = 5000
15+
externalPort = 80
16+
17+
[workflows]
18+
runButton = "Project"
19+
20+
[[workflows.workflow]]
21+
name = "Project"
22+
mode = "parallel"
23+
author = "agent"
24+
25+
[[workflows.workflow.tasks]]
26+
task = "workflow.run"
27+
args = "Start application"
28+
29+
[[workflows.workflow]]
30+
name = "Start application"
31+
author = "agent"
32+
33+
[workflows.workflow.metadata]
34+
agentRequireRestartOnSave = false
35+
36+
[[workflows.workflow.tasks]]
37+
task = "packager.installForAll"
38+
39+
[[workflows.workflow.tasks]]
40+
task = "shell.exec"
41+
args = "npm run dev"
42+
waitForPort = 5000

Frontend/client/index.html

Whitespace-only changes.

Frontend/client/src/App.tsx

Whitespace-only changes.

Frontend/client/src/components/comment-section.tsx

Whitespace-only changes.

Frontend/client/src/components/ui/accordion.tsx

Whitespace-only changes.

Frontend/client/src/components/ui/alert-dialog.tsx

Whitespace-only changes.

Frontend/client/src/components/ui/alert.tsx

Whitespace-only changes.

Frontend/client/src/components/ui/aspect-ratio.tsx

Whitespace-only changes.

0 commit comments

Comments
 (0)