Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit ace324d

Browse files
committed
docs
1 parent 32acccd commit ace324d

4 files changed

Lines changed: 80 additions & 115 deletions

File tree

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
- database
5252

5353
environment:
54-
SQLSERVER_CONNECTION: "Server=database,1433;Initial Catalog=JpProject;Persist Security Info=False;User ID=sa;Password=@Password1;MultipleActiveResultSets=False;Connection Timeout=30;"
54+
DATABASE_CONNECTION: "Server=database,1433;Initial Catalog=JpProject;Persist Security Info=False;User ID=sa;Password=@Password1;MultipleActiveResultSets=False;Connection Timeout=30;"
5555
ASPNETCORE_ENVIRONMENT: "Development"
5656
# ISSUER_URI: "http://localhost:5000"
5757
ASPNETCORE_Kestrel__Certificates__Default__Password: ".pxCpE]yttwC&b&hriw#,7K^_}A7xezRH3=EisJKn3]8.H}^Unzd+ebw]zzv_=d3"

docs/quickstarts/ambient_variables.rst

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,79 @@ Ambient variables
44

55
Using Ambient var you can minimize efforts to change configuration after publish.
66

7+
8+
SSO Variables
9+
-------------
10+
11+
12+
.. list-table:: Ambient Variables
13+
:widths: 15 25 25 35
14+
:header-rows: 1
15+
16+
* - Variable
17+
- Default
18+
- Expected in prod
19+
- Description
20+
* - ASPNETCORE_ENVIRONMENT
21+
- Development
22+
- Production
23+
- For more info access `the default docs <https://docs.microsoft.com/pt-br/aspnet/core/fundamentals/environments?view=aspnetcore-2.1>`_
24+
* - ASPNETCORE_URLS
25+
- https://+:5000;http://+:5001
26+
- https://+:443;http://+:80
27+
- Set the ports for Https and Http. For more info `docs <https://docs.microsoft.com/pt-br/aspnet/core/fundamentals/servers/kestrel?view=aspnetcore-2.1&tabs=aspnetcore2x>`_
28+
* - APPINSIGHTS_INSTRUMENTATIONKEY
29+
- <YOUR KEY>
30+
- Something like 762FAF25-9480-4AF7-8821-06875ED9266C
31+
- To create an Application Insights on Azure go to `docs <https://docs.microsoft.com/en-us/azure/bot-service/bot-service-resources-app-insights-keys?view=azure-bot-service-3.0>`_
32+
* - CERTIFICATE_TYPE
33+
- Temporary
34+
- File
35+
- Can be Temporary / File / Store / Environment
36+
* - ASPNETCORE_Kestrel__Certificates__Default__Path
37+
- Only used if CERTIFICATE_TYPE is Environment
38+
-
39+
- Ambients like docker or linux it can be usefull
40+
* - ASPNETCORE_Kestrel__Certificates__Default__Password
41+
- Only used if CERTIFICATE_TYPE is Environment
42+
-
43+
- Ambients like docker or linux it can be usefull
44+
* - USER_MANAGEMENT_URI
45+
- http://localhost:4200
46+
-
47+
- The path Url of User Management UI after published
48+
49+
50+
51+
User Management API Variables
52+
-----------------------------
53+
54+
55+
.. list-table:: Ambient Variables
56+
:widths: 15 25 25 35
57+
:header-rows: 1
58+
59+
* - Variable
60+
- Default
61+
- Expected in prod
62+
- Description
63+
* - ASPNETCORE_ENVIRONMENT
64+
- Development
65+
- Production
66+
- For more info access `the default docs <https://docs.microsoft.com/pt-br/aspnet/core/fundamentals/environments?view=aspnetcore-2.1>`_
67+
* - ASPNETCORE_URLS
68+
- https://+:5000;http://+:5001
69+
- https://+:443;http://+:80
70+
- Set the ports for Https and Http. For more info `docs <https://docs.microsoft.com/pt-br/aspnet/core/fundamentals/servers/kestrel?view=aspnetcore-2.1&tabs=aspnetcore2x>`_
71+
* - APPINSIGHTS_INSTRUMENTATIONKEY
72+
- <YOUR KEY>
73+
- Something like 762FAF25-9480-4AF7-8821-06875ED9266C
74+
- To create an Application Insights on Azure go to `docs <https://docs.microsoft.com/en-us/azure/bot-service/bot-service-resources-app-insights-keys?view=azure-bot-service-3.0>`_
75+
* - VALIDATE_ISSUER
76+
- true
77+
- true
78+
- In specifics use case, the Issuer URI from User Management UI differs from API. e.g: Docker Ambient
79+
* - AUTHORITY
80+
- https://localhost:5000
81+
-
82+
- The path Url of SSO

docs/quickstarts/build.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ To build solution you need to certify about these components first
1818
Build Files
1919
-----------
2020

21-
After :download:`download <https://github.com/brunohbrito/JP-Project/archive/master.zip>` or `clone <https://github.com/brunohbrito/JP-Project>`_ the initial state of project is:
21+
After :download:`at` `here <https://github.com/brunohbrito/JP-Project/archive/master.zip>`_ or `clone <https://github.com/brunohbrito/JP-Project>`_ the initial state of project is:
2222

2323
* Use Sql Server LocalDb
2424
* Temporary Certificate
2525
* Auto Migration enabled
2626

2727
Using build.bat
28-
^^^^^^^^^^^^^^
28+
^^^^^^^^^^^^^^^
2929

3030
Open folder *build* and execute build.bat. The file will install Nuget and NPM dependencies. Then compile and run.
3131

3232
Using build.ps1
33-
^^^^^^^^^^^^^^
33+
^^^^^^^^^^^^^^^
3434

3535
Sometimes there are missing parameters at Environment Path, so the build.bat can't build.
3636

src/Frontend/Jp.UI.SSO/Util/SigninCredentialExtension.cs

Lines changed: 0 additions & 111 deletions
This file was deleted.

0 commit comments

Comments
 (0)