Skip to content

Commit

Permalink
Ensure site can run on a fresh pull
Browse files Browse the repository at this point in the history
  • Loading branch information
jemayn committed Oct 16, 2024
1 parent 9d689c2 commit c89073e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions TwentyFourDays/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Example site for EF Core and UI Builder

This is an example repo that corresponds to this blogpost: https://24days.in/umbraco-cms/2023/effortless-ui/

To get started:
- Run the solution
- Import movies by calling https://localhost:44317/umbraco/api/test/testimport
- Allow your usergroup to see the new movies section
4 changes: 4 additions & 0 deletions TwentyFourDays/TwentyFourDays.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
<None Include="umbraco\Data\chatgpt-25-christmas-movies.xlsx" />
</ItemGroup>

<ItemGroup>
<Folder Include="wwwroot\media\" />
</ItemGroup>



<PropertyGroup>
Expand Down
6 changes: 5 additions & 1 deletion TwentyFourDays/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
}
},
"Unattended": {
"UpgradeUnattended": true
"UpgradeUnattended": true,
"InstallUnattended": true,
"UnattendedUserEmail": "[email protected]",
"UnattendedUserName": "Admin",
"UnattendedUserPassword": "1234567890"
},
"Security": {
"AllowConcurrentLogins": false
Expand Down

0 comments on commit c89073e

Please sign in to comment.