{"id":23859018,"url":"https://github.com/coloredcow/civicrm","last_synced_at":"2026-05-30T22:30:19.285Z","repository":{"id":239749482,"uuid":"800454390","full_name":"ColoredCow/civicrm","owner":"ColoredCow","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-26T21:59:42.000Z","size":113423,"stargazers_count":1,"open_issues_count":7,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-03T03:32:11.695Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ColoredCow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.txt","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}},"created_at":"2024-05-14T11:15:29.000Z","updated_at":"2024-06-13T05:21:30.000Z","dependencies_parsed_at":"2024-06-13T08:40:14.785Z","dependency_job_id":null,"html_url":"https://github.com/ColoredCow/civicrm","commit_stats":null,"previous_names":["pokhiii/civicrm","coloredcow/civicrm"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Fcivicrm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Fcivicrm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Fcivicrm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColoredCow%2Fcivicrm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ColoredCow","download_url":"https://codeload.github.com/ColoredCow/civicrm/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240163494,"owners_count":19758023,"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":"2025-01-03T03:29:11.525Z","updated_at":"2026-05-30T22:30:19.216Z","avatar_url":"https://github.com/ColoredCow.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CiviCRM\n\n## Preparing development environment\n\n### Pre-requisite\n\n1. PHP 8.x\n2. WP-CLI\n   1. [Installing via Homebrew](https://make.wordpress.org/cli/handbook/guides/installing/#installing-via-homebrew) would be the easiest option for macOS users.\n   2. If not, all other installation options can be found in the same page.\n3. MySQL 5.7.5+ or MariaDB 10.2+\n\n\n### Steps (from this repository)\n\n#### WordPress site setup\n\nFirst we will setup a WordPress site on top of which we will setup CiviCRM. For creating the WordPress site we will require a database.\n\n1. Login to the MySQL terminal\n   ```sh\n   mysql -u root -p\n   ```\n\n1. From the MySQL terminal, create a database\n   ```sql\n   create database civicrm;\n   exit\n   ```\n\n1. Clone this repository\n   ```sh\n   git clone https://github.com/coloredcow/civicrm.git\n   ```\n\n1. Change to project root directory\n   ```sh\n   cd civicrm\n   ```\n\n1. Create the WordPress config file (**specify the correct database credentials**)\n   ```sh\n   wp config create --dbname=civicrm --dbuser=root --dbpass=\n   ```\n\n1. Install WordPress and create admin\n   ```sh\n   wp core install --url=civicrm.test --title=\"CiviCRM\" --admin_user=admin --admin_password=admin --admin_email=admin@example.com\n   ```\n\n1. Create a virtual host\n   ```sh\n   valet link civicrm\n   ```\n\n1. Secure the virtual host\n   ```sh\n   valet secure civicrm\n   ```\n\n#### Setup CiviCRM\n\n1. Activate the plugin\n   ```sh\n   wp plugin activate civicrm\n   ```\n\n2. Go to `https://civicrm.test/wp-admin` and configure CiviCRM.\n   1. Check all the Components\n   2. And click on `Install CiviCRM`\n\n### Steps (from scratch)\n\n\u003e _You probably don't need to do it. @pokhiii has already done these and pushed it in this repository._\n#### WordPress site setup\n\nFirst we will setup a WordPress site on top of which we will setup CiviCRM. For creating the WordPress site we will require a database.\n\n1. Login to the MySQL terminal\n   ```sh\n   mysql -u root -p\n   ```\n\n1. From the MySQL terminal, create a database\n   ```sql\n   create database civicrm;\n   exit\n   ```\n\n1. Make project directory\n   ```sh\n   mkdir civicrm\n   ```\n\n1. Change to the project diretory\n   ```sh\n   cd civicrm\n   ```\n\n1. Download the WordPress core files in the current diretory\n   ```sh\n   wp core download\n   ```\n\n1. Create the WordPress config file (**specify the correct database credentials**)\n   ```sh\n   wp config create --dbname=civicrm --dbuser=root --dbpass=\n   ```\n\n1. Install WordPress and create admin\n   ```sh\n   wp core install --url=civicrm.test --title=\"CiviCRM\" --admin_user=admin --admin_password=admin --admin_email=admin@example.com\n   ```\n\n1. Create a virtual host\n   ```sh\n   valet link civicrm\n   ```\n\n1. Secure the virtual host\n   ```sh\n   valet secure civicrm\n   ```\n\n1. Go to `https://civicrm.test/wp-admin` and login using the admin credentials step 7.\n\n#### Setup CiviCRM\n\n1. In the project directory, run the following command to download the CiviCRM plugin\n   ```sh\n   wp plugin install https://download.civicrm.org/civicrm-5.73.2-wordpress.zip\n   ```\n\n1. Activate the plugin\n   ```sh\n   wp plugin activate civicrm\n   ```\n\n1. Go to `https://civicrm.test/wp-admin` and configure CiviCRM.\n   1. Check all the Components\n   2. And click on `Install CiviCRM`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoloredcow%2Fcivicrm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoloredcow%2Fcivicrm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoloredcow%2Fcivicrm/lists"}