{"id":20784938,"url":"https://github.com/eddiehubcommunity/creatorsregistry","last_synced_at":"2025-05-11T12:33:40.550Z","repository":{"id":244664617,"uuid":"806447309","full_name":"EddieHubCommunity/CreatorsRegistry","owner":"EddieHubCommunity","description":"A place for Creators to get paid for their content 💰. Companies don't only look for big influencers but also micro influencers. Join the platform and let them find you!","archived":true,"fork":false,"pushed_at":"2024-08-12T18:05:06.000Z","size":667,"stargazers_count":41,"open_issues_count":10,"forks_count":25,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-07T09:56:30.430Z","etag":null,"topics":["content-creators","creators-economy","nextjs","nodejs","postgres","prisma"],"latest_commit_sha":null,"homepage":"https://creators.eddiehub.org","language":"JavaScript","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/EddieHubCommunity.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":["eddiejaoude"]}},"created_at":"2024-05-27T08:08:19.000Z","updated_at":"2025-04-21T01:52:28.000Z","dependencies_parsed_at":"2024-06-16T14:58:31.099Z","dependency_job_id":"3d54fa34-d9a2-4d53-9dc9-1bb43f50c0f8","html_url":"https://github.com/EddieHubCommunity/CreatorsRegistry","commit_stats":null,"previous_names":["eddiehubcommunity/creatorsregistry"],"tags_count":50,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2FCreatorsRegistry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2FCreatorsRegistry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2FCreatorsRegistry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EddieHubCommunity%2FCreatorsRegistry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EddieHubCommunity","download_url":"https://codeload.github.com/EddieHubCommunity/CreatorsRegistry/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253567763,"owners_count":21928895,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["content-creators","creators-economy","nextjs","nodejs","postgres","prisma"],"created_at":"2024-11-17T14:34:38.164Z","updated_at":"2025-05-11T12:33:40.199Z","avatar_url":"https://github.com/EddieHubCommunity.png","language":"JavaScript","funding_links":["https://github.com/sponsors/eddiejaoude"],"categories":[],"sub_categories":[],"readme":"# \u003cimg src=\"./public/logo.svg\" width=35\u003e Creators Registry\n\nA place for Creators to get paid for their content 💰. Companies don't only look for big influencers but also micro influencers. Join the platform and let them find you!\n\n![App screenshot](https://github.com/EddieHubCommunity/CreatorsRegistry/assets/624760/10efe758-a712-43a0-aa61-947ad26361af)\n\n## Getting Started\n\nAll contributions welcome, not just code.\n\n### Technologies\n\n- NextJS (AppRouter)\n- Prisma\n- Postgres\n- LinkedIn OAuth\n\n### Local development\n\nThis environment is fully on your computer and requires each dependency to be installed and set up, but it gives you the most flexibility for customisation.\n\n#### Prerequisites\n\nNodeJS, Postgres and LinkedIn OAuth\n\n1. Copy `.env.example` to `.env` and fill out the parameters.\n   - For LinkedIn parameters, create a developer app [here](https://developer.linkedin.com).\n  \n#### Environment Variables\n\n| ENVIRONMENT VARIABLE   | EXAMPLE VALUE                                                          | DESCRIPTION                                 |\n| :--------------------- | :--------------------------------------------------------------------- | :------------------------------------------ |\n| DATABASE_URL           | postgresql://postgres:password@localhost:5432/contentcreator?schema=public | Connection url to your Postgres database    |\n| NEXTAUTH_URL           | http://localhost:3000                                                  | Url to your app                             |\n| NEXTAUTH_SECRET        | abcdefg                                                                | Random string                               |\n| LINKEDIN_CLIENT_ID     | abcd1234efgh5678                                                       | This is generated by the LinkedIn OAuth app |\n| LINKEDIN_CLIENT_SECRET | WER.asdflkjlkj234ljljjhg.asdf324jhghjg==                               | This is generated by the LinkedIn OAuth app |\n\n\u003cdetails\u003e\n    \u003csummary\u003eLinkedIn OAuth Details (click to expand)\u003c/summary\u003e\n    Authorized redirect URLs for your app \u003ccode\u003ehttp://localhost:3000/api/auth/callback/linkedin\u003c/code\u003e\n    \u003cimg alt=\"LinkedIn OAuth screenshot of settings\" src=\"https://github.com/EddieHubCommunity/CreatorsRegistry/assets/624760/c61a50eb-363e-4dcb-b208-405e256f7238\"\u003e\n\u003c/details\u003e\n\n1. Install the dependencies using `npm ci` from the package lock file (do not use `npm install` unless for a specific reason).\n2. Ensure your Postgres server is running on `localhost:5432` with the default username and `POSTGRES_PASSWORD` set as `password`. To start a Postgres server using Docker and Compose, use `docker compose -f postgres.compose.yaml up`.\n3. Create the database tables by running `npm run db:dev:migrate` (for production, use `npm run db:prod:migrate`).\n4. Seed the database by inserting example data with `npm run db:dev:seed` (if you need to reset the database, use `npm run db:dev:reset`).\n5. Start the local development server with `npm run dev`.\n\n### Local Development with Docker Compose\n\nThis will allow you to use your favorite IDE without having to install any dependencies on your computer.\n\n#### Prerequisites\n\nDocker and Docker Compose\n\n1. Clone the repository and navigate to the root of the directory.\n2. Copy `.env.example` to `.env` and fill out the parameters. Please refer to the [Environment Variables](#environment-variables) section.\n   - For LinkedIn parameters, create a developer app [here](https://developer.linkedin.com).\n   - There is no need to change the Postgres URL as it's already set in the [compose.yaml](compose.yaml) file.\n3. Run `docker compose up`.\n4. In your browser, go to `localhost:3000`, and you should see the project up and running.\n\n## Join the EddieHub community\nDiscord http://discord.eddiehub.org\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddiehubcommunity%2Fcreatorsregistry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feddiehubcommunity%2Fcreatorsregistry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddiehubcommunity%2Fcreatorsregistry/lists"}