{"id":29906648,"url":"https://github.com/avantguarda/hipertexto","last_synced_at":"2025-10-07T12:36:24.729Z","repository":{"id":222223399,"uuid":"756426290","full_name":"avantguarda/hipertexto","owner":"avantguarda","description":"Hipertexto is a static site generator application written in Python and available via pipx.","archived":false,"fork":false,"pushed_at":"2025-06-29T23:02:20.000Z","size":477,"stargazers_count":5,"open_issues_count":11,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-30T00:18:21.847Z","etag":null,"topics":["cli","python","ssg"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avantguarda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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-12T16:34:55.000Z","updated_at":"2025-06-29T23:01:08.000Z","dependencies_parsed_at":"2024-02-18T21:30:13.625Z","dependency_job_id":"da30bc19-c698-40de-92f6-44ac759f47b3","html_url":"https://github.com/avantguarda/hipertexto","commit_stats":null,"previous_names":["resma-ssg/resma-cli","getresma/resma-cli","brasilisclub/resma-cli","avantguarda/resma","avantguarda/hipertexto"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/avantguarda/hipertexto","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avantguarda%2Fhipertexto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avantguarda%2Fhipertexto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avantguarda%2Fhipertexto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avantguarda%2Fhipertexto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avantguarda","download_url":"https://codeload.github.com/avantguarda/hipertexto/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avantguarda%2Fhipertexto/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268297298,"owners_count":24228123,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cli","python","ssg"],"created_at":"2025-08-01T21:08:05.125Z","updated_at":"2025-10-07T12:36:19.687Z","avatar_url":"https://github.com/avantguarda.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hipertexto\n\n**Hipertexto** is a static site generator (SSG) written in Python. Below you'll find information on how to set up the development environment, run the application, and run tests. \n\n## Installation\n\nAs of now, you can use `pipx` to install Hipertexto in your machine:\n\n```sh\npipx install git+https://github.com/avantguarda/hipertexto\n ```\n\n## Setting Up the Development Environment\n\nTo set up the development environment for Hipertexto, you'll need to have Python 3.12 installed. You can use [uv](https://docs.astral.sh/uv/) to manage dependencies and run commands.\n\n1. **Clone the Repository:**\n\n   ```sh\n   git clone \u003crepository-url\u003e\n   cd hipertexto\n   ```\n\n2. **Install uv:**\n\n   If you don't have uv installed, you can install it by following the instructions on the [uv installation page](https://docs.astral.sh/uv/#installation).\n\n3. **Install Dependencies:**\n\n   ```sh\n   uv sync\n   ```\n\n   This command will install all the necessary dependencies for both the application and development.\n\n4. **Activate the Virtual Environment:**\n\n   ```sh\n   source .venv/bin/activate\n   ```\n\n## Running the Application\n\nTo run the application, use the following command:\n\n```sh\nht\n```\n\nThis command will start the Hipertexto application as defined in `hipertexto.main:app`.\n\n## Development Commands\n\nHipertexto uses `taskipy` for task management. Here are some useful commands:\n\n- **Linting:**\n\n  ```sh\n  task lint\n  ```\n\n  This command will run Ruff to check for code issues and display any differences.\n\n- **Formatting:**\n\n  ```sh\n  task format\n  ```\n\n  This command will automatically format your code using Ruff.\n\n- **Run Tests:**\n\n  ```sh\n  task test\n  ```\n\n  This will run the test suite using pytest and display coverage information.\n\n- **Run Mypy:**\n\n  ```sh\n  task mypy\n  ```\n\n  This will run Mypy for type checking.\n\n## Development Tools Configuration\n\n- **Pytest:**\n\n  Configuration for pytest is specified in `pyproject.toml` under `[tool.pytest.ini_options]`.\n\n- **Mypy:**\n\n  Configuration for Mypy is specified under `[tool.mypy]`.\n\n- **Ruff:**\n\n  Configuration for Ruff, including linting and formatting settings, is specified under `[tool.ruff]`.\n\n## Contribution\n\nIf you would like to contribute to Hipertexto, please fork the repository and submit a pull request with your changes. Ensure that your changes pass the linting and testing requirements before submitting.\n\n## Contact\n\nFor any questions or support, please contact:\n\n- Thiago Campos: [commit@thigcampos.com](mailto:commit@thigcampos.com)\n- Ivan Santiago: [ivansantiago.junior@gmail.com](mailto:ivansantiago.junior@gmail.com)\n\n## License\n\nHipertexto is licensed under the [GNU General Public License v3.0](LICENSE).\n\nThank you for using Hipertexto!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favantguarda%2Fhipertexto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favantguarda%2Fhipertexto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favantguarda%2Fhipertexto/lists"}