├── .gitignore ├── Readme.md ├── client ├── .gitignore ├── assets │ ├── bot.svg │ ├── send.svg │ └── user.svg ├── index.html ├── javascript.svg ├── package-lock.json ├── package.json ├── public │ └── favicon.ico ├── script.js └── style.css └── server ├── package-lock.json ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/Readme.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/assets/bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/assets/bot.svg -------------------------------------------------------------------------------- /client/assets/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/assets/send.svg -------------------------------------------------------------------------------- /client/assets/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/assets/user.svg -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/index.html -------------------------------------------------------------------------------- /client/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/javascript.svg -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/script.js -------------------------------------------------------------------------------- /client/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/client/style.css -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/server/package.json -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msadiq10/ChatGPTClone/HEAD/server/server.js --------------------------------------------------------------------------------