{"id":22273590,"url":"https://github.com/ingresse/aphrodite","last_synced_at":"2025-07-28T14:32:07.362Z","repository":{"id":57181358,"uuid":"82304568","full_name":"ingresse/aphrodite","owner":"ingresse","description":"Aphrodite","archived":false,"fork":false,"pushed_at":"2024-05-17T14:28:58.000Z","size":2773,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-11-14T21:30:40.702Z","etag":null,"topics":["css","framework","frontend","javascript"],"latest_commit_sha":null,"homepage":"http://ingresse.github.io/aphrodite","language":"HTML","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/ingresse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","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":"2017-02-17T14:24:27.000Z","updated_at":"2024-05-13T14:51:15.000Z","dependencies_parsed_at":"2024-05-16T18:28:33.922Z","dependency_job_id":null,"html_url":"https://github.com/ingresse/aphrodite","commit_stats":{"total_commits":57,"total_committers":5,"mean_commits":11.4,"dds":0.4385964912280702,"last_synced_commit":"fbe97aceb5866e7d30c9fa1e83367a03b4f0bc37"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ingresse%2Faphrodite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ingresse%2Faphrodite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ingresse%2Faphrodite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ingresse%2Faphrodite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ingresse","download_url":"https://codeload.github.com/ingresse/aphrodite/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227922941,"owners_count":17840940,"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":["css","framework","frontend","javascript"],"created_at":"2024-12-03T13:14:02.598Z","updated_at":"2024-12-03T13:14:03.287Z","avatar_url":"https://github.com/ingresse.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aphrodite\n### UI framework from ingresse.com\n\nA front-end framework with Ingresse styles, using AngularJS 1.5.\n\n(If you want, can use just the CSS)\n\n_\n\n## Install\nThere's two simple ways to use it.\n\n_\n\n#### Downloading files\nJust [download](https://github.com/ingresse/aphrodite/archive/master.zip), extract the package and move files from `dist` to your app folder.\n\n\nAfter, include files in your page.\n\n```html\n...\n\u003chead\u003e\n    ...\n    \u003clink rel=\"stylesheet\" type=\"text/css\"\n          href=\"/assets/aphrodite.css\" /\u003e\n\n    \u003c!-- OPTIONALS --\u003e\n    \u003clink rel=\"stylesheet\" type=\"text/css\"\n          href=\"/assets/aphrodite-font-family.css\" /\u003e\n    \u003clink rel=\"stylesheet\" type=\"text/css\"\n          href=\"/assets/aphrodite-icons.css\" /\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    ...\n    \u003c!-- OPTIONAL: AngularJS --\u003e\n    \u003cscript type=\"text/javascript\" src=\"https://ajax.googleapis.com/ajax/libs/angularjs/1.6.3/angular.min.js\"\u003e\n    \u003c/script\u003e\n    ...\n    \u003c!-- OPTIONALS: Components and Services AngularJS based --\u003e\n    \u003cscript type=\"text/javascript\" src=\"/scripts/aphrodite-vendors.js\"\u003e\n    \u003c/script\u003e\n    \u003cscript type=\"text/javascript\" src=\"/scripts/aphrodite.js\"\u003e\n    \u003c/script\u003e\n\u003c/body\u003e\n...\n```\n\n_\n\n### Installing with Bower\nYou can install with Bower in your App Project, but using GitHub repository as source:\n```\nbower install --save-dev https://github.com/ingresse/aphrodite.git\n```\n\nInclude files in your App `index` file.\n\n\n```html\n...\n\u003chead\u003e\n    ...\n    \u003clink rel=\"stylesheet\" type=\"text/css\"\n          href=\"/bower_components/aphrodite/dist/assets/aphrodite.css\" /\u003e\n\n    \u003c!-- OPTIONALS --\u003e\n    \u003clink rel=\"stylesheet\" type=\"text/css\"\n          href=\"/bower_components/aphrodite/dist/assets/aphrodite-font-family.css\" /\u003e\n    \u003clink rel=\"stylesheet\" type=\"text/css\"\n          href=\"/bower_components/aphrodite/dist/assets/aphrodite-icons.css\" /\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    ...\n    \u003c!-- OPTIONAL: AngularJS --\u003e\n    \u003cscript type=\"text/javascript\" src=\"/bower_components/angular/angular.js\"\u003e\n    \u003c/script\u003e\n\n    \u003c!-- OPTIONALS: Components and Services AngularJS based --\u003e\n    \u003cscript type=\"text/javascript\" src=\"/bower_components/aphrodite/dist/scripts/aphrodite-vendors.js\"\u003e\n    \u003c/script\u003e\n    \u003cscript type=\"text/javascript\" src=\"/bower_components/aphrodite/dist/scripts/aphrodite.js\"\u003e\n    \u003c/script\u003e\n\u003c/body\u003e\n...\n```\n_\n\n### Local debug\nYou can debug `Aphrodite` locally in your project, for example, if you are running a project like `embedstore`, you can make adjustments to `Aphrodite` locally and see how it will behave in your `embedstore` project. To do this, you'll need to follow these steps:\n\n1. Have the project you are developing cloned, for example, the previously mentioned `embedstore` and `Aphrodite`.\n2. Run the `npm i` and `bower install` commands in the `Aphrodite` project directory.\n3. Make the desired changes to `Aphrodite`.\n4. Run npm `run build` in `Aphrodite`.\n5. In the project where you need to check the changes to `Aphrodite`, which in our example is `embedstore`, there is a directory with the installed components from `bower` called `bower_components`, and `Aphrodite` is one of them. Access the directory of `Aphrodite`.\n6. Replace the `dist` directory inside the `Aphrodite` directory within `bower_components` in your project (which in our example is `embedstore`) with the `dist` generated in the `build` of `Aphrodite`.\n\n\u003e Following these steps, the changes made to `Aphrodite` locally will be reflected in the project that is using `Aphrodite`. Remember that these changes will *not persist* because the `bower_components` folder is ignored by git; *this is only for local development environment*.\n\n## AngularJS dependencies included in 'aphrodite-vendors'\n- 3.x [animate.css](https://github.com/daneden/animate.css/)\n- 1.6.4 [angular-animate](https://github.com/angular/bower-angular-animate)\n- 2.10.1 [angular-click-outside](https://github.com/IamAdamJowett/angular-click-outside)\n- 1.0 [angular-scroll](https://github.com/oblador/angular-scroll)\n- 0.x [angular-ui-utils](https://github.com/angular-ui/ui-utils)\n- 1.4.0 [ngDialog](https://github.com/likeastore/ngDialog)\n\n_\n\n## [Documentation](http://ingresse.github.io/aphrodite)\n\nWe try, but isn't the most complete and readeable documentation (yet).\n\nCSS, Components and Services usage examples in our GitHub Page:\n\n**[http://ingresse.github.io/aphrodite](http://ingresse.github.io/aphrodite)**\n\n\n_\n\n\n## License\n\nThe code is available under the [MIT license](license.txt).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fingresse%2Faphrodite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fingresse%2Faphrodite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fingresse%2Faphrodite/lists"}