{"id":15046295,"url":"https://github.com/erdiko/user-admin","last_synced_at":"2025-10-19T15:44:26.702Z","repository":{"id":56978617,"uuid":"73364944","full_name":"Erdiko/user-admin","owner":"Erdiko","description":"A secure and modular user manager","archived":false,"fork":false,"pushed_at":"2024-11-13T03:56:30.000Z","size":38692,"stargazers_count":23,"open_issues_count":14,"forks_count":7,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-31T12:38:59.075Z","etag":null,"topics":["angular-cli","angular2","erdiko","php","user-management"],"latest_commit_sha":null,"homepage":"http://erdiko.org/user-admin/","language":"CSS","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/Erdiko.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}},"created_at":"2016-11-10T09:08:14.000Z","updated_at":"2024-07-09T22:31:56.000Z","dependencies_parsed_at":"2025-01-02T16:11:38.716Z","dependency_job_id":"52144c79-fdb2-4676-a477-b860a8446479","html_url":"https://github.com/Erdiko/user-admin","commit_stats":{"total_commits":452,"total_committers":6,"mean_commits":75.33333333333333,"dds":0.6814159292035398,"last_synced_commit":"d45ceeb65a4946182bca44752e40e9d092a36a43"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erdiko%2Fuser-admin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erdiko%2Fuser-admin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erdiko%2Fuser-admin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Erdiko%2Fuser-admin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Erdiko","download_url":"https://codeload.github.com/Erdiko/user-admin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252931385,"owners_count":21827104,"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":["angular-cli","angular2","erdiko","php","user-management"],"created_at":"2024-09-24T20:52:57.727Z","updated_at":"2025-10-19T15:44:21.652Z","avatar_url":"https://github.com/Erdiko.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"User Admin\n==========\n\n[![Package version](https://img.shields.io/packagist/v/erdiko/user-admin.svg?style=flat-square)](https://packagist.org/packages/erdiko/user-admin) [![CircleCI](https://img.shields.io/circleci/project/github/Erdiko/user-admin/develop.svg?style=flat-square)](https://circleci.com/gh/Erdiko/user-admin) [![license](https://img.shields.io/github/license/erdiko/user-admin.svg?style=flat-square)](https://github.com/Erdiko/user-admin/blob/master/LICENSE)\n\nA fully functional and modular user management system with an Angular 2 UI and PHP backend.\n\nIt is based on a few erdiko packages (authorize, authenticate, and users) as well as the [Angular CLI](https://github.com/angular/angular-cli) project.\n\n\nApplication\n-----------\n\nThe UI is an Angular CLI project using an erdiko web application to interact with the database. Erdiko loads the Angular 2 application as well as serves the AJAX routes.\n\nWe chose to use Angular CLI since it makes it very simple to create new components as well as creating basic unit and functional tests for the developer. We also wanted to provide a method to allow the user to easily test their code as they developed yet still compile and serve the smallest code when serving to the end user.\n\n\nInstallation\n------------\n\n#### Create your project using composer\n\n`composer create erdiko/user-admin [PROJECT NAME]`\n\n##### Note about versions\n\nSince this project is still under heavy development we recommend running the latest from the develop branch.  If you would like to tell composer to use the develop branch use this command instead of the one above.\n\n`composer create erdiko/user-admin:dev-develop [PROJECT NAME]`\n\n#### Create your docker containers\n\nEnter your newly created project directory and run docker compose.\n\n`cd [PROJECT NAME]`\n\n`docker-compose up -d`\n\nIf you don't have docker compose installed you can install by following the instructions here, [https://docs.docker.com/compose/install/](https://docs.docker.com/compose/install/).  You can, of course, just create create your own lamp stack if you wish.  If you create your own enviornment the weboot is /public/default/ and the database config is in /app/config/shared/database.json\n\n#### Install the users database\n\nIf you're running the docker container, installing the db is easy.  Just run the scripts/install-db.sh script.\n\nIf you are not using the docker script then simply restore the sql dump found in vendor/erdiko/users/sql/dumps/user-admin.sql.  Update app/config/shared/database.json with the connection information for your mysql server.\n\nCheck the users README if you need more information [https://github.com/Erdiko/users](https://github.com/Erdiko/users).\n\n#### View your new project in your browser\n\n[http://erdiko.local/](http://erdiko.local/)\n\n\nEditing \u0026 Compiling the Angular Code\n------------------------------------\n\nEditing and compiling the Angular code is simple, and we use Angular CLIs test server to allow you to edit your code and test in real time.\n\n1. Go to the `user-admin` theme directory under `user-admin/app/themes/user-admin`\n1. Install all dependencies via npm: `npm i`\n1. Start the development server: `npm run start`\n1. Edit the typescript found in the `src` directory and save in another terminal window or tab, watch for compiler errors\n\n## NPM Run Commands\n\n* Start the Development server: `npm run start`\n* Run the unit tests: `npm run test`\n* Run the e2e/functional tests: `npm run e2e`\n* Compile and export files for end user: `npm run build`\n\n\nContributing to Erdiko User Admin\n---------------------------------\n\nTo set up your environment for local development to contribute to the project please take a look at CONTRIBUTING.md.  That file has all the instructions on how to set up a development environment with Docker.  We've included some useful scripts in the scripts/dev folder to help.\n\n\nSpecial Thanks\n--------------\n\nArroyo Labs - For sponsoring development, [http://arroyolabs.com](http://arroyolabs.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferdiko%2Fuser-admin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferdiko%2Fuser-admin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferdiko%2Fuser-admin/lists"}