├── .gitignore ├── Dockerfile ├── README.md ├── data └── readme.md ├── docker-compose.yml ├── package.json ├── src ├── notifications.ts ├── openai.ts ├── scraper.ts └── storage.ts ├── template.database.env ├── template.env ├── template.phpmyadmin.env └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/README.md -------------------------------------------------------------------------------- /data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/data/readme.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/package.json -------------------------------------------------------------------------------- /src/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/src/notifications.ts -------------------------------------------------------------------------------- /src/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/src/openai.ts -------------------------------------------------------------------------------- /src/scraper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/src/scraper.ts -------------------------------------------------------------------------------- /src/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/src/storage.ts -------------------------------------------------------------------------------- /template.database.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/template.database.env -------------------------------------------------------------------------------- /template.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/template.env -------------------------------------------------------------------------------- /template.phpmyadmin.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/template.phpmyadmin.env -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoxelS/openai-scraper/HEAD/tsconfig.json --------------------------------------------------------------------------------