Views
No views yet
1polymarket-trader
2├── .gitignore
3├── docker-compose.yml
4├── backend
5│ ├── .env.example
6│ ├── go.mod
7│ ├── go.sum
8│ ├── server.exe
9│ ├── cmd
10│ │ └── server
11│ │ ├── main.go
12│ │ └── main_test.go
13│ └── internal
14│ ├── adapters
15│ │ └── polymarket
16│ │ ├── client.go
17│ │ └── websocket.go
18│ ├── api
19│ │ ├── handlers.go
20│ │ └── router.go
21│ ├── config
22│ │ └── config.go
23│ ├── core
24│ │ ├── analytics.go
25│ │ ├── copy_engine.go
26│ │ └── trader_discovery.go
27│ └── models
28│ └── models.go
29└── frontend
30 ├── .gitignore
31 ├── components.json
32 ├── eslint.config.js
33 ├── index.html
34 ├── package-lock.json
35 ├── package.json
36 ├── postcss.config.js
37 ├── tailwind.config.js
38 ├── tsconfig.app.json
39 ├── tsconfig.json
40 ├── tsconfig.node.json
41 ├── vite.config.ts
42 ├── public
43 │ └── vite.svg
44 └── src
45 ├── App.css
46 ├── App.test.tsx
47 ├── App.tsx
48 ├── index.css
49 ├── main.tsx
50 ├── assets
51 │ └── react.svg
52 ├── components
53 │ ├── ActivePositions.tsx
54 │ ├── BotChat.tsx
55 │ ├── CopyConfigDialog.tsx
56 │ └── ui
57 │ ├── avatar.tsx
58 │ ├── badge.tsx
59 │ ├── button.tsx
60 │ ├── card.tsx
61 │ ├── dialog.tsx
62 │ ├── input.tsx
63 │ ├── label.tsx
64 │ ├── scroll-area.tsx
65 │ ├── table.tsx
66 │ └── tabs.tsx
67 ├── lib
68 │ └── utils.ts
69 └── test
70 └── setup.ts/backend)cmd/: Contains the main entry points for the application.internal/: Private application code.adapters/: implementations of interfaces for external services (e.g., Polymarket).api/: HTTP handlers and router configuration.core/: Business logic and domain services./frontend)src/: Source code for the frontend application.components/: Reusable UI components.lib/: Helper functions and utilities.