{"id":20015247,"url":"https://github.com/freymaurer/usermanagement","last_synced_at":"2025-06-22T14:10:20.647Z","repository":{"id":39260911,"uuid":"219493062","full_name":"Freymaurer/UserManagement","owner":"Freymaurer","description":"SAFE stack User Management with Asp.net Core Identity, Saturn, Fable Remoting","archived":false,"fork":false,"pushed_at":"2023-01-05T05:17:15.000Z","size":7578,"stargazers_count":8,"open_issues_count":9,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-04T22:37:21.735Z","etag":null,"topics":["asp-net-core","asp-net-core-identity","authentication","fable-remoting","giraffe","safe-stack","saturn"],"latest_commit_sha":null,"homepage":"","language":"F#","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/Freymaurer.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}},"created_at":"2019-11-04T12:10:36.000Z","updated_at":"2022-09-19T09:31:59.000Z","dependencies_parsed_at":"2023-02-03T12:46:24.729Z","dependency_job_id":null,"html_url":"https://github.com/Freymaurer/UserManagement","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Freymaurer/UserManagement","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FUserManagement","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FUserManagement/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FUserManagement/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FUserManagement/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Freymaurer","download_url":"https://codeload.github.com/Freymaurer/UserManagement/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Freymaurer%2FUserManagement/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261304267,"owners_count":23138301,"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":["asp-net-core","asp-net-core-identity","authentication","fable-remoting","giraffe","safe-stack","saturn"],"created_at":"2024-11-13T07:45:29.253Z","updated_at":"2025-06-22T14:10:15.637Z","avatar_url":"https://github.com/Freymaurer.png","language":"F#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SAFE Template\n\nHighly recommend improving error handling and password prompts in this example repo with [Feliz.SweetAlert](https://github.com/Shmew/Feliz.SweetAlert) style alerts.\n\nThis template can be used to generate a full-stack web application using the [SAFE Stack](https://safe-stack.github.io/). It was created using the dotnet [SAFE Template](https://safe-stack.github.io/docs/template-overview/). If you want to learn more about the template why not start with the [quick start](https://safe-stack.github.io/docs/quickstart/) guide?\n\n## Install pre-requisites\n\nYou'll need to install the following pre-requisites in order to build this SAFE application.\n\n* [.NET Core SDK](https://www.microsoft.com/net/download) 5.0 or higher\n* [Node LTS](https://nodejs.org/en/download/)\n* [Docker-compose](https://docs.docker.com/compose/install/)\n\n## Starting the application\n\nBefore you run the project **for the first time only** you must install dotnet \"local tools\" with this command:\n\n```bash\ndotnet tool restore\n```\n\nStarting the application for the first time will prompt you to install local certificates for `https` support.\nWhen the following image pops up go `Install Certificate` \u003e `Current User` \u003e `Place all certificates in the following store` \u003e `Trusted Root Certification Authorities` \u003e confirm all choices \"Finish, yes, etc\".\n\n![local certificate img](https://i.stack.imgur.com/igvUim.png)\n\n\nTo concurrently run the server and the client components in watch mode use the following command. This will also run docker-compose for an mssql database (`Port:1433`) and an adminer instance (`Port:8082`). \n\n!! **Before** you are able to use the auth. functionality you first need to migrate the identityDb schema onto the freshly created docker database. To do this publish the `db/.dbframe/dbframe.dacpac` file to the database. If you know how to automate this step. Please feel free to open an issue with the relevant information or -best case- open a pull request with the solution.\n\n[Publish dacpac with Visual Studio](https://blogs.msmvps.com/deborahk/deploying-a-dacpac-with-visual-studio/)\n\n```bash\ndotnet run\n```\n\nThen open `http://localhost:8080` in your browser.\n\nThe build project in root directory contains a couple of different build targets. You can specify them after `--` (target name is case-insensitive).\n\nTo run concurrently server and client tests in watch mode (you can run this command in parallel to the previous one in new terminal):\n\n```bash\ndotnet run -- RunTests\n```\n\nClient tests are available under `http://localhost:8081` in your browser and server tests are running in watch mode in console.\n\nFinally, there are `Bundle` and `Azure` targets that you can use to package your app and deploy to Azure, respectively:\n\n```bash\ndotnet run -- Bundle\ndotnet run -- Azure\n```\n\n## SAFE Stack Documentation\n\nIf you want to know more about the full Azure Stack and all of it's components (including Azure) visit the official [SAFE documentation](https://safe-stack.github.io/docs/).\n\nYou will find more documentation about the used F# components at the following places:\n\n* [Saturn](https://saturnframework.org/)\n* [Fable](https://fable.io/docs/)\n* [Elmish](https://elmish.github.io/elmish/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreymaurer%2Fusermanagement","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffreymaurer%2Fusermanagement","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffreymaurer%2Fusermanagement/lists"}