{"id":15172651,"url":"https://github.com/wesandradealves/equatorial-institucional-api","last_synced_at":"2026-03-09T10:03:25.237Z","repository":{"id":250385694,"uuid":"834186009","full_name":"wesandradealves/equatorial-institucional-api","owner":"wesandradealves","description":"Drupal","archived":false,"fork":false,"pushed_at":"2024-08-29T18:58:24.000Z","size":805706,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-10-26T02:39:16.919Z","etag":null,"topics":["drupal","drupal-10","drupal-8","drupal-9","drupal-project","drupal-theme","php"],"latest_commit_sha":null,"homepage":"","language":"Twig","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wesandradealves.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-07-26T15:53:52.000Z","updated_at":"2025-08-10T22:41:42.000Z","dependencies_parsed_at":"2025-02-11T06:41:37.879Z","dependency_job_id":null,"html_url":"https://github.com/wesandradealves/equatorial-institucional-api","commit_stats":null,"previous_names":["wesandradealves/equatorial-institucional-api"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wesandradealves/equatorial-institucional-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesandradealves%2Fequatorial-institucional-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesandradealves%2Fequatorial-institucional-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesandradealves%2Fequatorial-institucional-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesandradealves%2Fequatorial-institucional-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wesandradealves","download_url":"https://codeload.github.com/wesandradealves/equatorial-institucional-api/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wesandradealves%2Fequatorial-institucional-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30290947,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T02:57:19.223Z","status":"ssl_error","status_checked_at":"2026-03-09T02:56:26.373Z","response_time":61,"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":["drupal","drupal-10","drupal-8","drupal-9","drupal-project","drupal-theme","php"],"created_at":"2024-09-27T10:01:58.656Z","updated_at":"2026-03-09T10:03:25.217Z","avatar_url":"https://github.com/wesandradealves.png","language":"Twig","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Institucional Drupal\nEste é o projeto é a aplicação back-end do portal Institucional Equatorial com a finalidade de realizar a gestão de conteúdo e fornecer APIs para o front-end em React. \n\n# [PADRÃO DE DESENVOLVIMENTO E QUALIDADE](/readme/Definitions.md)\n\n# Fluxo da Aplicação\n- Cada estado terá seu par te aplicações, uma front-ende outra back-end, ambas dentro do Open Shift;\n- CadaDrupalterá seu banco de dados que não estará dentro da máquina Open Shift;\n- O Drupal terá duas rotas, uma para o front-end consumir os dados via API e outra para o painel administrativo do CMS;\n- Atualmente teremos 14 aplicações, 7 para back-end, uma por estado e outras 7 de front-end, uma para cada estado.\n\n![Fluxo da aplicação](/readme/app_flow.png)\n\n# Drupal Installation Guide\n\nThis guide will walk you through the steps to install and set up a Drupal project using DDEV.\n\n## Prerequisites\n\n- Git\n- PHP 8.0+\n- Drupal10\n- DDEV (installation instructions below)\n- Composer\n\n## Steps\n\n### 1. Clone the Repository\n\nFirst, clone the repository from IBM Cloud:\n\n```sh\ngit clone https://us-south.git.cloud.ibm.com/equatorial-one/institucional-drupal\ncd institucional-drupal\n```\n\n### 2. Switch to the Develop Branch\n\n```sh\ngit checkout develop\n```\n\n### 3. Install DDEV\n\nFollow the instructions to install DDEV on your device: [DDEV Installation Guide](https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/#__tabbed_1_2)\n\n### 4. Configure DDEV\n\nAt the root of the cloned repository, run the following command to configure DDEV:\n\n```sh\nddev config\n```\n\nFollow the instructions:\n\n- Preferably choose to install on the root.\n- Select `drupal10` as the default config.\n- Set a name for the project.\n\nThis will create a folder called `.ddev`.\n\n### 5. Update DDEV Configuration\n\nLocate the file `.ddev/config.yaml` and scroll down to lines 43 and 44 (or around there). Look for `router_http_port` and `router_https_port`. Uncomment the lines and change the ports to avoid conflicts:\n\n```yaml\nrouter_http_port: 5353  # Port to be used for http (defaults to global configuration, usually 80)\nrouter_https_port: 444  # Port for https (defaults to global configuration, usually 443)\n```\n\n### 6. Install Dependencies\n\nAt the root of the project, run:\n\n```sh\ncomposer install\n```\n\n### 7. Start the DDEV Project\n\nStart the project with:\n\n```sh\nddev start\n```\n\nThis will start a blank Drupal project. Access the given URL and proceed with the installation of the blank Drupal project.\n\n### 8. Enable the Backup and Migrate Module\n\nOnce your Drupal instance is installed and running, enable the `backup_migrate` module:\n\n```sh\nddev drush en backup_migrate\n```\n\n### 9. Access the Admin Screen\n\nTo access the admin screen, either go to `/user/` URL or run the following command to generate a login URL:\n\n```sh\nddev drush uli\n```\n\n### 10. Restore Backup\n\n(https://us-south.git.cloud.ibm.com/equatorial-one/institucional-react/uploads/1906189c62c5475568c8589dbbc0c5da/backup-2024-07-16T09-36-57.mysql.gz)\n\nGo to the Backup and Migrate restore menu at `/admin/config/development/backup_migrate/restore` and upload the current backup.\n\n### 11. Unzip the Files Folder\n\n(https://us-south.git.cloud.ibm.com/equatorial-one/institucional-react/uploads/949bf9311c481ed27ebc6d0356323726/files.zip)\n\nUnzip the files folder in `/sites/default/` and check if it has unzipped correctly.\n\n---\n\nBy following these steps, you should have a Drupal project set up and running with the necessary configurations. If you encounter any issues, refer to the DDEV and Drupal documentation for further assistance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwesandradealves%2Fequatorial-institucional-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwesandradealves%2Fequatorial-institucional-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwesandradealves%2Fequatorial-institucional-api/lists"}