Skip to content

Commit

Permalink
Merge pull request #3 from shashinma/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
shashinma authored Nov 28, 2023
2 parents a968bb1 + fe45c86 commit 7e38830
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 10 deletions.
25 changes: 25 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/.idea
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/azds.yaml
**/bin
**/charts
**/docker-compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
## files generated by popular Visual Studio add-ons.

.DS_Store
*.db
*.db*
!*.db

# User-specific files
*.suo
Expand Down
Binary file added IdentityContext.db
Binary file not shown.
Binary file added PhoneBookContext.db
Binary file not shown.
6 changes: 0 additions & 6 deletions PhoneEdit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,6 @@
<PackageReference Include="X.PagedList.Mvc.Core" Version="8.4.7" />
</ItemGroup>

<ItemGroup>
<Content Include="..\.dockerignore">
<Link>.dockerignore</Link>
</Content>
</ItemGroup>

<ItemGroup>
<_ContentIncludedByDefault Remove="Views\Home\Index.cshtml" />
<_ContentIncludedByDefault Remove="Views\Home\Privacy.cshtml" />
Expand Down
1 change: 0 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using Microsoft.EntityFrameworkCore;
using MySql.Data.MySqlClient;
using PhoneEdit.Data;
using Microsoft.Extensions.DependencyInjection;
using PhoneEdit.Helpers;

var builder = WebApplication.CreateBuilder(args);
Expand Down
4 changes: 2 additions & 2 deletions Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:5087",
"applicationUrl": "http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand All @@ -22,7 +22,7 @@
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:7289;http://localhost:5087",
"applicationUrl": "https://localhost:5001;http://localhost:5000",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down

0 comments on commit 7e38830

Please sign in to comment.