Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit08a46e4

Browse files
committed
Updated documentation, added config version.
1 parent2d5275c commit08a46e4

File tree

13 files changed

+867
-23
lines changed

13 files changed

+867
-23
lines changed

‎Core/Resgrid.Config/InfoConfig.cs‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespaceResgrid.Config
2+
{
3+
publicstaticclassInfoConfig
4+
{
5+
publicstaticintConfigVersion=0;
6+
}
7+
}

‎Core/Resgrid.Config/Resgrid.Config.csproj‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
<CompileInclude="ExternalErrorConfig.cs" />
8080
<CompileInclude="FirebaseConfig.cs" />
8181
<CompileInclude="InboundEmailConfig.cs" />
82+
<CompileInclude="InfoConfig.cs" />
8283
<CompileInclude="LinksConfig.cs" />
8384
<CompileInclude="MappingConfig.cs" />
8485
<CompileInclude="MarketingConfig.cs" />

‎Core/Resgrid.Config/ResgridConfig.json‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2+
"InfoConfig.ConfigVersion":"1",
3+
24
"DataConfig.ConnectionString":"Data Source=(local);Initial Catalog=Resgrid;Integrated Security=True;MultipleActiveResultSets=True;",
5+
36
"SystemBehaviorConfig.ResgridBaseUrl":"http://resgrid.local",
47
"SystemBehaviorConfig.ResgridApiBaseUrl":"http://resgridapi.local",
58
"SystemBehaviorConfig.DoNotBroadcast":"false",

‎Web/Resgrid.Services/Properties/PublishProfiles/FolderProfile.pubxml.user‎

Lines changed: 807 additions & 0 deletions
Large diffs are not rendered by default.

‎Web/Resgrid.WebCore/Properties/PublishProfiles/FolderProfile.pubxml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ by editing this MSBuild file. In order to learn more about this please visit htt
1212
<SiteUrlToLaunchAfterPublish />
1313
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
1414
<ExcludeApp_Data>False</ExcludeApp_Data>
15-
<TargetFramework>net462</TargetFramework>
15+
<TargetFramework>net472</TargetFramework>
1616
<RuntimeIdentifier>win7-x86</RuntimeIdentifier>
1717
<ProjectGuid>d867d4ca-d348-4485-a7b0-5293df8f93d5</ProjectGuid>
18-
<publishUrl>bin\Release\net462\publish\</publishUrl>
18+
<publishUrl>bin\Release\net472\publish\</publishUrl>
1919
<DeleteExistingFiles>True</DeleteExistingFiles>
2020
</PropertyGroup>
2121
</Project>

‎Web/Resgrid.WebCore/Properties/PublishProfiles/FolderProfile.pubxml.user‎

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

‎docs/source/installation/index.rst‎

Lines changed: 47 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,6 @@ Installing Microsoft IIS (Webserver) will differ based on what version of Window
104104

105105
..note::Depending on the requirements of your web server, environment and other factors your installed IIS options may be different. Resgrid requires at a minimum the .NET Extensibility and ASP.NET Options to run minimally.
106106

107-
Microsoft SQL Server
108-
=======================
109-
110-
..important::Resgrid only supports SQL Server 2014 or newer and we recommend SQL 2016 SP1 or newer. A server collation of "SQL_Latin1_General_CP1_CI_AS" is also required.
111-
112-
..note::If your using a Named SQL server instance, i.e. any SQL instance that's not the default instance and your are supplying the named instance name in the ResgridConfig.json file you will need to use double back slash's in between the server and SQL instance name. For example if you have a named SQL instance SQL2014 on the locally installed SQL server you need to specify the DataSource as "(local)\\SQL2014" with 2 backslashes "\\" in between the server and instance names.
113-
114107
Install Resgrid
115108
****************************
116109

@@ -143,18 +136,61 @@ Setup Hosts File
143136

144137
Run Notepad as Administrator, open up the hosts file in the following directory 'C:\\Windows\\System32\\drivers\\etc' and add the following lines at the bottom.
145138

146-
127.0.0.1resgrid.local
147-
127.0.0.1resgridapi.local
139+
|127.0.0.1resgrid.local
140+
|127.0.0.1resgridapi.local
141+
|127.0.0.1 rgdevserver
148142
149143
This will allow you to access locally on the box using the above domain names. If you have your own names you can use those in the IIS configuration below. If you already have the entries into your hosts file you do not need to add them again.
150144

145+
..note::If you are installing Resgrid components on multiple systems (i.e. web server boxes, api boxes, database server, etc) replace '127.0.0.1' with the static IP address of the server where those components are installed.
146+
151147
Database Installation
152148
****************************
153149

154-
You will need to install and configure Microsoft SQL Server you can find tutorials online an example of one is `from tutorialpoint<https://www.tutorialspoint.com/ms_sql_server/ms_sql_server_installation.htm>`_. You will need SQL Server and SQL Managment Studio which can be `downloaded form Microsoft<https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017>`_.
150+
You will need to install and configure Microsoft SQL Server you can find tutorials online an example of one is `from tutorialpoint<https://www.tutorialspoint.com/ms_sql_server/ms_sql_server_installation.htm>`_. You will need SQL Server and SQL Management Studio which can be `downloaded from Microsoft<https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017>`_.
151+
152+
Microsoft SQL Server
153+
=======================
154+
155+
..important::Resgrid only supports SQL Server 2014 or newer and we recommend SQL 2016 SP1 or newer. A server collation of "SQL_Latin1_General_CP1_CI_AS" is also required.
156+
157+
For the most basic SQL Server installation you will need "Database Engine Services" and "Management Tools". If Management Tools isn't available for your SQL Install.
158+
159+
..image::https://raw.githubusercontent.com/resgrid/core/master/misc/images/SQLServerOptions1.png
160+
:width:800
161+
:alt:SQL Install Options 1
162+
163+
..image::https://raw.githubusercontent.com/resgrid/core/master/misc/images/SQLServerOptions2.png
164+
:width:800
165+
:alt:SQL Install Options 2
166+
167+
SQL Server can be installed as a "Default Instance" or "Named Instance" the standard way Resgrid is configured out of the box is a locally installed Default Instance of SQL Server. If you are installing SQL Server on another server then the Resgrid applications or you are configuring SQL to be a Named Instance you will need to modify the ResgridConfig.json which is located in the Config directory of the Resgrid installation folder. Default location is C:\\Resgrid\\Config\\.
168+
169+
..image::https://raw.githubusercontent.com/resgrid/core/master/misc/images/SQLServerInstance.png
170+
:width:800
171+
:alt:SQL Instance Setup
172+
173+
During the installation of SQL Server you will need to set the collation for the SQL server. Resgrid requires "SQL_Latin1_General_CP1_CI_AS", but this can also be set at the Database level if this SQL Server is shared.
174+
175+
..image::https://raw.githubusercontent.com/resgrid/core/master/misc/images/SQLServerCollation.png
176+
:width:800
177+
:alt:SQL Server SQL_Latin1_General_CP1_CI_AS Collation
178+
179+
..note::If your using a Named SQL server instance, i.e. any SQL instance that's not the default instance and your are supplying the named instance name in the ResgridConfig.json file you will need to use double back slash's in between the server and SQL instance name. For example if you have a named SQL instance SQL2014 on the locally installed SQL server you need to specify the DataSource as "(local)\\SQL2014" with 2 backslashes "\\" in between the server and instance names.
180+
181+
Database Creation
182+
=======================
155183

156184
Once you have Microsoft SQL and Microsoft SQL Management Studio installed; open up Microsoft SQL Management studio, connect to your SQL Server and create an empty database called Resgrid.
157185

186+
..image::https://raw.githubusercontent.com/resgrid/core/master/misc/images/SQLDatabase.png
187+
:width:800
188+
:alt:Database Creation 1
189+
190+
..image::https://raw.githubusercontent.com/resgrid/core/master/misc/images/SQLDatabaseOptions.png
191+
:width:800
192+
:alt:Database Creation 2
193+
158194
Install\\Update Resgrid Schema
159195
=======================
160196

@@ -178,7 +214,7 @@ That will start the Resgrid Database Update process and either Update or Install
178214

179215
C:\\Resgrid\\Tools>
180216

181-
This will be run when your upgrading your Resgrid installation as well.
217+
This will be run when your upgrading your Resgrid installation as well. If you installed (unzipped and copied) Resgrid to another path other then C:\\Resgrid ensure you are opening the command prompt to that directory instead of C:\\Resgrid.
182218

183219
IIS Installation
184220
****************************

‎misc/images/SQLDatabase.png‎

39.8 KB
Loading

‎misc/images/SQLDatabaseOptions.png‎

45.9 KB
Loading

‎misc/images/SQLServerCollation.png‎

50.7 KB
Loading

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp