├── .env.example ├── .gitignore ├── README.md ├── package.json ├── src ├── index.html ├── main.ts ├── preload.ts ├── renderer │ ├── App.css │ ├── App.tsx │ ├── ConfigScreen.css │ ├── ConfigScreen.tsx │ ├── index.html │ └── index.tsx └── services │ └── openai.ts ├── tsconfig.json └── webpack.config.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/preload.ts -------------------------------------------------------------------------------- /src/renderer/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/renderer/App.css -------------------------------------------------------------------------------- /src/renderer/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/renderer/App.tsx -------------------------------------------------------------------------------- /src/renderer/ConfigScreen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/renderer/ConfigScreen.css -------------------------------------------------------------------------------- /src/renderer/ConfigScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/renderer/ConfigScreen.tsx -------------------------------------------------------------------------------- /src/renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/renderer/index.html -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /src/services/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/src/services/openai.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AryanChopraa/crack-coder/HEAD/webpack.config.js --------------------------------------------------------------------------------