Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publicação da aplicação #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 16 additions & 0 deletions Application/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#FRONTEND
Para executar o frontend:

1) NPM INSTALL
2) NPM START (OU GRUNT SERVE)
3) Url do frontend: localhost:9000/

#BACKEND

1) Configure a Url do PostgreSQL em appsettings.Development.json
2) Configure a Url do postgreSQL em NLOG.config para logs de aplicação (Opcional).
3) Url da webapi: localhost:9001/




1,017 changes: 1,017 additions & 0 deletions Application/UI/src/.vs/Web-UI/config/applicationhost.config

Large diffs are not rendered by default.

Binary file added Application/UI/src/.vs/Web-UI/v14/.suo
Binary file not shown.
Binary file added Application/UI/src/.vs/Web-UI/v15/.suo
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added Application/UI/src/.vs/Web-UI/v16/.suo
Binary file not shown.
Empty file.
Binary file not shown.
1,033 changes: 1,033 additions & 0 deletions Application/UI/src/.vs/config/applicationhost.config

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions Application/UI/src/Web-UI.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web-UI", "Web-UI\Web-UI.csproj", "{0E514763-7DB5-483F-9B85-99AD9159E4EA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0E514763-7DB5-483F-9B85-99AD9159E4EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0E514763-7DB5-483F-9B85-99AD9159E4EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0E514763-7DB5-483F-9B85-99AD9159E4EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0E514763-7DB5-483F-9B85-99AD9159E4EA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1841F06A-3B15-4CE3-9739-02A0C86F1D4E}
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions Application/UI/src/Web-UI/.bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"directory": "bower_components"
}
21 changes: 21 additions & 0 deletions Application/UI/src/Web-UI/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# EditorConfig helps developers define and maintain consistent
# coding styles between different editors and IDEs
# editorconfig.org

root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions Application/UI/src/Web-UI/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions Application/UI/src/Web-UI/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/node_modules
/dist
/.tmp
/.sass-cache
/bower_components
6 changes: 6 additions & 0 deletions Application/UI/src/Web-UI/.jscsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"requireCamelCaseOrUpperCaseIdentifiers": true,
"requireCapitalizedConstructors": true,
"requireParenthesesAroundIIFE": true,
"validateQuoteMarks": "'"
}
16 changes: 16 additions & 0 deletions Application/UI/src/Web-UI/.jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"bitwise": true,
"browser": true,
"curly": true,
"eqeqeq": true,
"esnext": true,
"latedef": true,
"noarg": true,
"node": true,
"strict": true,
"undef": true,
"unused": true,
"globals": {
"angular": false
}
}
Loading