├── .dockerignore ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.config.ts ├── bun.lock ├── docker-compose.yml ├── docs ├── DOCKER.md └── SELFHOST.md ├── instant.perms.ts ├── instant.schema.ts ├── package.json ├── patches └── nitropack@2.10.4.patch ├── postcss.config.cjs ├── public ├── banner.png ├── favicon.svg ├── gaussian_noise.png ├── icon.jpg ├── logo.svg ├── name.svg ├── og.png ├── profile.svg ├── robots.txt ├── screenshot.jpg ├── screenshot2.jpg ├── screenshot3.jpg ├── sitemap.xml └── whitehouse.jpg ├── src ├── app.css ├── app.tsx ├── client │ ├── accept.ts │ ├── database.tsx │ └── utils.tsx ├── components │ ├── AIComp.tsx │ ├── BlockComp.tsx │ ├── BuyComp.tsx │ ├── BuySellComp.tsx │ ├── CheckBox.tsx │ ├── CheckboxItem.tsx │ ├── IconComp.tsx │ ├── Image.tsx │ ├── InfiniteScroll.tsx │ ├── MarketCard.tsx │ ├── MarketImage.tsx │ ├── MarketSocialComp.tsx │ ├── Markets.tsx │ ├── MartketChart.tsx │ ├── Nav.tsx │ ├── NewsItem.tsx │ ├── OptionImage.tsx │ ├── OptionItem.tsx │ ├── ProfileImage.tsx │ ├── SellComp.tsx │ ├── Spinner.tsx │ ├── TranslatingGroup.tsx │ └── buysell │ │ └── Header.tsx ├── entry-client.tsx ├── entry-server.tsx ├── routes │ ├── [...404].tsx │ ├── api │ │ ├── alive │ │ │ └── index.tsx │ │ ├── complete │ │ │ └── index.ts │ │ ├── history__options │ │ │ └── [id] │ │ │ │ └── index.tsx │ │ ├── markets │ │ │ └── [id] │ │ │ │ └── vote │ │ │ │ └── index.ts │ │ ├── options │ │ │ └── [id] │ │ │ │ └── action │ │ │ │ └── index.tsx │ │ └── profiles │ │ │ └── jwt │ │ │ └── index.tsx │ ├── index.tsx │ ├── market │ │ └── [id].tsx │ └── profile │ │ └── [id].tsx ├── server │ ├── chat-utils.ts │ └── utils.ts ├── shared │ ├── BLOCKS.json │ ├── tools │ │ ├── createMarket.ts │ │ ├── index.ts │ │ ├── searchImages.ts │ │ ├── searchWeb.ts │ │ └── utils.ts │ └── utils.tsx └── types │ ├── brave_search_image.d.ts │ ├── brave_search_news.d.ts │ ├── brave_search_web.d.ts │ ├── global.d.ts │ └── window.d.ts ├── tailwind.config.cjs └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/README.md -------------------------------------------------------------------------------- /app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/app.config.ts -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/bun.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/docs/DOCKER.md -------------------------------------------------------------------------------- /docs/SELFHOST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/docs/SELFHOST.md -------------------------------------------------------------------------------- /instant.perms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/instant.perms.ts -------------------------------------------------------------------------------- /instant.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/instant.schema.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/package.json -------------------------------------------------------------------------------- /patches/nitropack@2.10.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/patches/nitropack@2.10.4.patch -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/gaussian_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/gaussian_noise.png -------------------------------------------------------------------------------- /public/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/icon.jpg -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/name.svg -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/og.png -------------------------------------------------------------------------------- /public/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/profile.svg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/screenshot.jpg -------------------------------------------------------------------------------- /public/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/screenshot2.jpg -------------------------------------------------------------------------------- /public/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/screenshot3.jpg -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/whitehouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/public/whitehouse.jpg -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/client/accept.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/client/accept.ts -------------------------------------------------------------------------------- /src/client/database.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/client/database.tsx -------------------------------------------------------------------------------- /src/client/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/client/utils.tsx -------------------------------------------------------------------------------- /src/components/AIComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/AIComp.tsx -------------------------------------------------------------------------------- /src/components/BlockComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/BlockComp.tsx -------------------------------------------------------------------------------- /src/components/BuyComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/BuyComp.tsx -------------------------------------------------------------------------------- /src/components/BuySellComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/BuySellComp.tsx -------------------------------------------------------------------------------- /src/components/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/CheckBox.tsx -------------------------------------------------------------------------------- /src/components/CheckboxItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/CheckboxItem.tsx -------------------------------------------------------------------------------- /src/components/IconComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/IconComp.tsx -------------------------------------------------------------------------------- /src/components/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/Image.tsx -------------------------------------------------------------------------------- /src/components/InfiniteScroll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/InfiniteScroll.tsx -------------------------------------------------------------------------------- /src/components/MarketCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/MarketCard.tsx -------------------------------------------------------------------------------- /src/components/MarketImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/MarketImage.tsx -------------------------------------------------------------------------------- /src/components/MarketSocialComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/MarketSocialComp.tsx -------------------------------------------------------------------------------- /src/components/Markets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/Markets.tsx -------------------------------------------------------------------------------- /src/components/MartketChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/MartketChart.tsx -------------------------------------------------------------------------------- /src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/Nav.tsx -------------------------------------------------------------------------------- /src/components/NewsItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/NewsItem.tsx -------------------------------------------------------------------------------- /src/components/OptionImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/OptionImage.tsx -------------------------------------------------------------------------------- /src/components/OptionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/OptionItem.tsx -------------------------------------------------------------------------------- /src/components/ProfileImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/ProfileImage.tsx -------------------------------------------------------------------------------- /src/components/SellComp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/SellComp.tsx -------------------------------------------------------------------------------- /src/components/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/Spinner.tsx -------------------------------------------------------------------------------- /src/components/TranslatingGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/TranslatingGroup.tsx -------------------------------------------------------------------------------- /src/components/buysell/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/components/buysell/Header.tsx -------------------------------------------------------------------------------- /src/entry-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/entry-client.tsx -------------------------------------------------------------------------------- /src/entry-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/entry-server.tsx -------------------------------------------------------------------------------- /src/routes/[...404].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/[...404].tsx -------------------------------------------------------------------------------- /src/routes/api/alive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/api/alive/index.tsx -------------------------------------------------------------------------------- /src/routes/api/complete/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/api/complete/index.ts -------------------------------------------------------------------------------- /src/routes/api/history__options/[id]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/api/history__options/[id]/index.tsx -------------------------------------------------------------------------------- /src/routes/api/markets/[id]/vote/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/api/markets/[id]/vote/index.ts -------------------------------------------------------------------------------- /src/routes/api/options/[id]/action/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/api/options/[id]/action/index.tsx -------------------------------------------------------------------------------- /src/routes/api/profiles/jwt/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/api/profiles/jwt/index.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/routes/market/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/market/[id].tsx -------------------------------------------------------------------------------- /src/routes/profile/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/routes/profile/[id].tsx -------------------------------------------------------------------------------- /src/server/chat-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/server/chat-utils.ts -------------------------------------------------------------------------------- /src/server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/server/utils.ts -------------------------------------------------------------------------------- /src/shared/BLOCKS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/shared/BLOCKS.json -------------------------------------------------------------------------------- /src/shared/tools/createMarket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/shared/tools/createMarket.ts -------------------------------------------------------------------------------- /src/shared/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/shared/tools/index.ts -------------------------------------------------------------------------------- /src/shared/tools/searchImages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/shared/tools/searchImages.ts -------------------------------------------------------------------------------- /src/shared/tools/searchWeb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/shared/tools/searchWeb.ts -------------------------------------------------------------------------------- /src/shared/tools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/shared/tools/utils.ts -------------------------------------------------------------------------------- /src/shared/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/shared/utils.tsx -------------------------------------------------------------------------------- /src/types/brave_search_image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/types/brave_search_image.d.ts -------------------------------------------------------------------------------- /src/types/brave_search_news.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/types/brave_search_news.d.ts -------------------------------------------------------------------------------- /src/types/brave_search_web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/types/brave_search_web.d.ts -------------------------------------------------------------------------------- /src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/types/global.d.ts -------------------------------------------------------------------------------- /src/types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/src/types/window.d.ts -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tri2820/imply/HEAD/tsconfig.json --------------------------------------------------------------------------------