{"id":38939287,"url":"https://github.com/sonastea/kpoppop","last_synced_at":"2026-01-17T15:51:19.107Z","repository":{"id":38206943,"uuid":"425165899","full_name":"sonastea/kpoppop","owner":"sonastea","description":"k-pop oriented social network site with messaging support!","archived":false,"fork":false,"pushed_at":"2025-12-04T02:39:35.000Z","size":8177,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-07T08:20:36.258Z","etag":null,"topics":["cloudflare","docker","imagekit","k-pop","kpop","memes","monorepo","nestjs","nginx","oauth2","passport","postgresql","prisma","react","selfhost","social","vite","zustand"],"latest_commit_sha":null,"homepage":"https://kpoppop.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sonastea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-11-06T05:41:51.000Z","updated_at":"2025-12-04T02:39:39.000Z","dependencies_parsed_at":"2024-02-23T06:31:31.995Z","dependency_job_id":"f59ffb48-9a78-483a-8e89-3b3ba15cfb1c","html_url":"https://github.com/sonastea/kpoppop","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sonastea/kpoppop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonastea%2Fkpoppop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonastea%2Fkpoppop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonastea%2Fkpoppop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonastea%2Fkpoppop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sonastea","download_url":"https://codeload.github.com/sonastea/kpoppop/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sonastea%2Fkpoppop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28511851,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T13:38:16.342Z","status":"ssl_error","status_checked_at":"2026-01-17T13:37:44.060Z","response_time":85,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cloudflare","docker","imagekit","k-pop","kpop","memes","monorepo","nestjs","nginx","oauth2","passport","postgresql","prisma","react","selfhost","social","vite","zustand"],"created_at":"2026-01-17T15:51:18.675Z","updated_at":"2026-01-17T15:51:19.099Z","avatar_url":"https://github.com/sonastea.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# K-POP Meme based site created with React NestJS Node and Prisma\n\n## Required Files\n\n❗️Important: Needed to run the server or it will not compile!\n\n```bash\n├── kpoppop\n│\n├── client\\\n│       ├── `.env`\n│\n├── server\\\n│       ├── secrets\\\n│       │       ├── `private-key.pem`\n│       │       ├── `public-certificate.pem`\n│       ├── `.env`\n│       ├── `firebaseCredentials.json`\n│\n├── `database.env`\n```\n\n\\\nReference for creating [ssl certificate](https://stackoverflow.com/questions/10175812/how-to-generate-a-self-signed-ssl-certificate-using-openssl).\n\n```c\n# client/.env\n        ⭕ VITE_API_URL         // Endpoint that serves images.\n        ⭕ VITE_MESSAGES_WS_URL // Endpoint for message websocket connection. Typically wss://{API}\n        🔴 VITE_SITE_KEY        // ReCAPTCHA key to invoke reCATPCHA service.\n\n# server/.env\n        🔴 DATABASE_URL         // Connection string to reach database.\n        🔴 SESSION_SECRET_KEY   // Random x bytes to sign session cookies.\n        🔴 STORAGE_BUCKET       // Endpoint that images are saved with firebase storage.\n        🔴 NODE_ENV             // Defaults to 'production', takes 'test' or 'development'.\n        🔴 RECAPTCHA_SECRET     // Verifies invoked recaptcha response from clients.\n        ⭕ REDIS_URL            // Redis Service Pub/Sub for web socket messages.\n        🔴 DISCORDBOT_TOKEN\n        🔴 DISCORDBOT_WEBHOOK\n        🔴 DISCORD_GUILD_ID\n        🔴 DISCORD_CHANNEL_ID\n        🔴 DISCORD_CLIENT_ID\n        🔴 DISCORD_CLIENT_SECRET\n        🔴 DISCORD_CALLBACK_URL\n        🔴 THROTTLE_TTL\n        🔴 THROTTLE_LIMIT\n\n# server/firebaseCredentials.json\n        // Credentials that authorize user to access the firebase storage buckets.\n        🔴 firebaseCredentials.json 📄\n\n# server/secrets/\n        // Self-signed certs to run server as https\n        🔴 private-key.pem          📄\n        🔴 public-certificate.pem   📄\n\n# database.env\n        // Used in creation of database:kpoppop_db in docker-compose.\n        🔴 POSTGRES_USER                // User to login postgresql db.\n        🔴 POSTGRES_PASSWORD            // Password to login postgresql db.\n        🔴 POSTGRES_DB                  // Database name that stores the schemas.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonastea%2Fkpoppop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonastea%2Fkpoppop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonastea%2Fkpoppop/lists"}