Skip to content

Commit 18dac68

Browse files
author
akasarto
committed
Solution cleanup
Readme updated Small css fixes
1 parent f1c4249 commit 18dac68

File tree

8 files changed

+37
-2176
lines changed

8 files changed

+37
-2176
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Thiago Alberto Schneider
3+
Copyright (c) 2018 Sarto Research
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+33-13
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,44 @@ This is a MVC5 starter kit application with all the initial (and boring) boilerp
77
- Dependency injection with SimpleInjector.
88
- Out of the box mailing system with support for native SMTP and MailGun Api.
99
- Out of the box dynamic image thumb generation with ImageResizer and Cloudinary.
10+
- Client side libraries managed by the new Visual Studio Library Manager (LibMan).
1011
- Globalization ready and by-user language, region and timezone definition.
1112
- Error logging with Serilog.
1213

1314
And more to come...
1415

16+
## Default Username and Password
17+
18+
- admin
19+
- password
20+
21+
## Pre Requirements
22+
23+
- Tooling and Environment
24+
- Windows 10+ machine
25+
- Visual Studio 2017 Community v15.8.3+.
26+
- Clone or download the code from the _master_ branch.
27+
1528
## Running
1629

17-
- Db
18-
- Create a database named `mvc5Starter`
19-
- Execute the script under `/sources/db-schemas/create_Db.sql` to create the db objects.
20-
- Execute the script under `/sources/db-schemas/create_Users.sql` to create the default user.
21-
- If necessary, change the _web.config_ connection string to point to your server.
22-
23-
- Web App
24-
- Get Visual Studio 2017 Community v15.8.3+.
25-
- Get the code from this repository _master_ branch.
26-
- Make sure nuget packages are set to auto restore.
27-
- Set _App.UI.Mvc5_ as the startup project.
30+
- Recommended
31+
- Open a new `cmd` or `powershell` console window.
32+
- Navigate to the project root folder (where it was extracted or cloned).
33+
- Execute the following command to setup the app: `app install` or `./app install`.
34+
- The command above will attempt to create the database on your local *LocalDb* instance.
35+
- If necessary, change the _web.config_ connection string to point to your desired SQL Server.
36+
- Open the `starterTemplateMVC5.sln` solution file under the `sources` folder.
37+
- If necessary, set _App.UI.Mvc5_ as the startup project.
38+
- Compile and you're good to go.
39+
- Hit F5 to start.
40+
41+
- Manual (if the above fails for some reason)
42+
- Create a database named `starterTemplateMVC5`
43+
- Execute the script under `/sources/Data.Tools.Migrator/SqlServerScripts/Create_Initial_Db_Structure.sql` to create the db objects.
44+
- Execute the script under `/sources/Data.Tools.Migrator/SqlServerScripts/Create_Initial_SuperUser_Account.sql` to create the default user.
45+
- If necessary, change the _web.config_ connection string to point to your SQL Server.
46+
- Open the `starterTemplateMVC5.sln` solution file under the `sources` folder.
47+
- If necessary, set _App.UI.Mvc5_ as the startup project.
2848
- Compile and you're good to go.
2949
- Hit F5 to start.
3050

@@ -35,13 +55,13 @@ And more to come...
3555

3656
## Screenshots
3757

38-
![Overview](/media/ss1.png?raw=true "Overview")
58+
![Overview](/docs/ss1.png?raw=true "Overview")
3959

4060
## License
4161

4262
MIT License
4363

44-
Copyright (c) 2018 Thiago Alberto Schneider
64+
Copyright (c) 2018 Sarto Research
4565

4666
Permission is hereby granted, free of charge, to any person obtaining a copy
4767
of this software and associated documentation files (the "Software"), to deal

docs/ss1.png

5.13 KB
Loading

sources/App.UI.Mvc5/App.UI.Mvc5.csproj

-10
Original file line numberDiff line numberDiff line change
@@ -634,11 +634,6 @@
634634
<DesignTime>True</DesignTime>
635635
<DependentUpon>AreaResources.resx</DependentUpon>
636636
</Compile>
637-
<Compile Include="TmpResource.Designer.cs">
638-
<DependentUpon>TmpResource.resx</DependentUpon>
639-
<AutoGen>True</AutoGen>
640-
<DesignTime>True</DesignTime>
641-
</Compile>
642637
<Compile Include="AppResources.Designer.cs">
643638
<AutoGen>True</AutoGen>
644639
<DesignTime>True</DesignTime>
@@ -958,11 +953,6 @@
958953
<Generator>PublicResXFileCodeGenerator</Generator>
959954
<LastGenOutput>AreaResources.Designer.cs</LastGenOutput>
960955
</EmbeddedResource>
961-
<EmbeddedResource Include="TmpResource.resx">
962-
<Generator>PublicResXFileCodeGenerator</Generator>
963-
<LastGenOutput>TmpResource.Designer.cs</LastGenOutput>
964-
<SubType>Designer</SubType>
965-
</EmbeddedResource>
966956
<EmbeddedResource Include="AppResources.resx">
967957
<Generator>PublicResXFileCodeGenerator</Generator>
968958
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>

sources/App.UI.Mvc5/Assets/stylesheet/app.css

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ html {
1919
}
2020

2121
body {
22-
margin-bottom: 75px;
2322
}
2423

2524
.footer {

0 commit comments

Comments
 (0)