{"id":19954220,"url":"https://github.com/code100x/cms","last_synced_at":"2025-05-13T22:09:20.232Z","repository":{"id":220252960,"uuid":"751147919","full_name":"code100x/cms","owner":"code100x","description":"Repo for https://app.100xdevs.com/ ","archived":false,"fork":false,"pushed_at":"2025-03-29T19:53:55.000Z","size":28246,"stargazers_count":1301,"open_issues_count":128,"forks_count":1830,"subscribers_count":17,"default_branch":"main","last_synced_at":"2025-05-11T10:52:54.219Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://app.100xdevs.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/code100x.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"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,"zenodo":null}},"created_at":"2024-02-01T02:43:50.000Z","updated_at":"2025-05-07T16:46:21.000Z","dependencies_parsed_at":"2024-03-09T19:30:56.470Z","dependency_job_id":"e0eb907b-fed9-4669-b37a-0e08f0e23c32","html_url":"https://github.com/code100x/cms","commit_stats":{"total_commits":656,"total_committers":170,"mean_commits":"3.8588235294117648","dds":0.8216463414634146,"last_synced_commit":"d5758721ecb3b272de56782e15c3157cf6f892f5"},"previous_names":["code100x/cms"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fcms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fcms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fcms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code100x%2Fcms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code100x","download_url":"https://codeload.github.com/code100x/cms/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254036830,"owners_count":22003654,"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":[],"created_at":"2024-11-13T01:19:19.962Z","updated_at":"2025-05-13T22:09:15.223Z","avatar_url":"https://github.com/code100x.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 style=\"font-size: 40px;\"\u003eCMS - 100xDevs\u003c/h1\u003e\n\nOpen source repo for app.100xdevs.com\n\n## Running Locally\n\n\u003e [!NOTE]  \n\u003e This project uses [pnpm](https://pnpm.io/) only as a package manager.\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/code100x/cms.git\n```\n\n2. Navigate to the project directory:\n\n```bash\ncd cms\n```\n# Instant Docker Setup\n\n\u003e [!NOTE]  \n\u003e Your Docker Demon should be online\n\n1. Running Script for Instant setup\n\n```\n# Gives permission to execute a setup file\nchmod +x setup.sh\n\n# Runs the setup script file\n./setup.sh\n```\n\n# Traditional Docker Setup\n\n(Optional) Start a PostgreSQL database using Docker:\n\n```bash\ndocker run -d \\\n--name cms-db \\\n-e POSTGRES_USER=myuser \\\n-e POSTGRES_PASSWORD=mypassword \\\n-e POSTGRES_DB=mydatabase \\\n-p 5432:5432 \\\npostgres\n``` \n\n\n\n1. Create a .env file:\n\n   - Copy `.env.example` and rename it to `.env`.\n\n\n2. Install dependencies:\n\n```bash\npnpm install\n```\n\n3. Run database migrations:\n\n```bash\npnpm prisma:migrate\n```\n\n4. Generate prisma client\n\n```bash\npnpm prisma generate\n```\n\n5. Seed the database:\n\n```bash\npnpm db:seed\n```\n\n6. Start the development server:\n\n```bash\npnpm dev\n```\n\n## Usage\n\n1. Access the application in your browser:\n\n```bash\nhttp://localhost:3000\n```\n\n2. Login using any of the following provided user credentials:\n\n- Email: `testuser@example.com`, Password: `123456`\n\n- Email: `testuser2@example.com`, Password: `123456`\n\n## Contributing\n\nWe welcome contributions from the community! There are many ways to contribute to the CMS. Code is just one possible means of contribution.\n\n### To contribute follow these steps:\n\n1. [Fork the repository](https://docs.github.com/en/free-pro-team@latest/github/getting-started-with-github/fork-a-repo).\n\n2. Clone the fork to your local machine:\n\n```bash\ngit clone https://github.com/\u003cyour username\u003e/cms.git\ncd cms\n```\n\n3. Create a new branch\n\n```bash\ngit checkout -b feature/fooBar\n```\n\n4. Make your changes and commit them\n\n```bash\ngit commit -am 'Add some fooBar'\n```\n\n5. Push to the branch\n\n```bash\ngit push origin feature/fooBar\n```\n\n6. Go to [the repository](https://github.com/code100x/cms/pulls) and [make a Pull Request](https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request).\n\n\u003e For major changes, please open an issue first to discuss what you would like to change.\n\nRead our [contribution guidelines](./CONTRIBUTING.md) for more details.\n\n## Contributors\n\n\u003ca  href=\"https://github.com/code100x/cms/graphs/contributors\"\u003e\n\u003cimg  src=\"https://contrib.rocks/image?repo=code100x/cms\u0026max=400\u0026columns=20\"  /\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode100x%2Fcms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode100x%2Fcms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode100x%2Fcms/lists"}