Skip to content

Commit

Permalink
Write documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasbbs committed Mar 15, 2024
1 parent 3beb9c4 commit 6dafbf1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ The app is built around five main entities:
- Add desired tables to the shopping cart and proceed to checkout.
- Complete the checkout process.

## Authorization and Authentication
- To register a table you should be authenticated as an admin. That's the authorization admin part. There is only one admin user in the app. It is possible to create more than one, but this is feature is not yet implemented
- You can browse the products, but to add them to the cart, as well check your cart you shoud be authenticated. That's the authorization for common users. It is possible to create normal users by following the normal process of authentication.

## Security Measures Implemented

(TO-DO)
Expand Down
9 changes: 9 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,12 @@ password: Secret123*
2024-02-29 1400
Initial Migration:
20240218044426_InitialMigration


2024-03-15 1656
Resolved a critical issue involving a SqlException: Connection Timeout Expired, ensuring smoother database operations by addressing connectivity timeouts effectively.
The issue was the methods GetAwaiter().GetResult() on the function Initialize from the class DbInitializer (https://stackoverflow.com/a/34549714). I commented out that code and now everything is working fine.

PRODUCTION: https://clear-edge-tables.azurewebsites.net/
DEVELOPMENT: https://clear-edge-tables-dev.azurewebsites.net/
TEST: https://clear-edge-tables-test.azurewebsites.net/

0 comments on commit 6dafbf1

Please sign in to comment.