├── .deepsource.toml ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── diagram.yml │ ├── docker.yml │ └── greetings.yml ├── .gitignore ├── .replit ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── diagram.svg ├── docker-compose.yml ├── next.config.js ├── package.json ├── pages ├── _app.js ├── api │ ├── download.js │ └── images.js └── index.js ├── replit.nix ├── styles ├── Home.module.css └── globals.css └── yarn.lock /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: 1998code 4 | -------------------------------------------------------------------------------- /.github/workflows/diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/.github/workflows/diagram.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/.replit -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/README.md -------------------------------------------------------------------------------- /diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/diagram.svg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/pages/_app.js -------------------------------------------------------------------------------- /pages/api/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/pages/api/download.js -------------------------------------------------------------------------------- /pages/api/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/pages/api/images.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/pages/index.js -------------------------------------------------------------------------------- /replit.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/replit.nix -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/styles/globals.css -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1998code/DALLE-2-App/HEAD/yarn.lock --------------------------------------------------------------------------------