Skip to content

Commit e1e0b92

Browse files
Merge pull request #55 from evan-bradley/Documentation
Documentation
2 parents b132422 + 7756431 commit e1e0b92

17 files changed

+304
-0
lines changed

.gitignore

+303
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,306 @@
2020
.DS_Store
2121
*.css
2222
*.css.map
23+
24+
## Ignore Visual Studio temporary files, build results, and
25+
## files generated by popular Visual Studio add-ons.
26+
##
27+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
28+
29+
# User-specific files
30+
*.suo
31+
*.user
32+
*.userosscache
33+
*.sln.docstates
34+
35+
# User-specific files (MonoDevelop/Xamarin Studio)
36+
*.userprefs
37+
38+
# Build results
39+
[Dd]ebug/
40+
[Dd]ebugPublic/
41+
[Rr]elease/
42+
[Rr]eleases/
43+
x64/
44+
x86/
45+
bld/
46+
[Bb]in/
47+
[Oo]bj/
48+
[Ll]og/
49+
50+
# Visual Studio 2015 cache/options directory
51+
.vs/
52+
# Uncomment if you have tasks that create the project's static files in wwwroot
53+
#wwwroot/
54+
55+
# MSTest test Results
56+
[Tt]est[Rr]esult*/
57+
[Bb]uild[Ll]og.*
58+
59+
# NUNIT
60+
*.VisualState.xml
61+
TestResult.xml
62+
63+
# Build Results of an ATL Project
64+
[Dd]ebugPS/
65+
[Rr]eleasePS/
66+
dlldata.c
67+
68+
# Benchmark Results
69+
BenchmarkDotNet.Artifacts/
70+
71+
# .NET Core
72+
project.lock.json
73+
project.fragment.lock.json
74+
artifacts/
75+
**/Properties/launchSettings.json
76+
77+
*_i.c
78+
*_p.c
79+
*_i.h
80+
*.ilk
81+
*.meta
82+
*.obj
83+
*.pch
84+
*.pdb
85+
*.pgc
86+
*.pgd
87+
*.rsp
88+
*.sbr
89+
*.tlb
90+
*.tli
91+
*.tlh
92+
*.tmp
93+
*.tmp_proj
94+
*.log
95+
*.vspscc
96+
*.vssscc
97+
.builds
98+
*.pidb
99+
*.svclog
100+
*.scc
101+
102+
# Chutzpah Test files
103+
_Chutzpah*
104+
105+
# Visual C++ cache files
106+
ipch/
107+
*.aps
108+
*.ncb
109+
*.opendb
110+
*.opensdf
111+
*.sdf
112+
*.cachefile
113+
*.VC.db
114+
*.VC.VC.opendb
115+
116+
# Visual Studio profiler
117+
*.psess
118+
*.vsp
119+
*.vspx
120+
*.sap
121+
122+
# Visual Studio Trace Files
123+
*.e2e
124+
125+
# TFS 2012 Local Workspace
126+
$tf/
127+
128+
# Guidance Automation Toolkit
129+
*.gpState
130+
131+
# ReSharper is a .NET coding add-in
132+
_ReSharper*/
133+
*.[Rr]e[Ss]harper
134+
*.DotSettings.user
135+
136+
# JustCode is a .NET coding add-in
137+
.JustCode
138+
139+
# TeamCity is a build add-in
140+
_TeamCity*
141+
142+
# DotCover is a Code Coverage Tool
143+
*.dotCover
144+
145+
# AxoCover is a Code Coverage Tool
146+
.axoCover/*
147+
!.axoCover/settings.json
148+
149+
# Visual Studio code coverage results
150+
*.coverage
151+
*.coveragexml
152+
153+
# NCrunch
154+
_NCrunch_*
155+
.*crunch*.local.xml
156+
nCrunchTemp_*
157+
158+
# MightyMoose
159+
*.mm.*
160+
AutoTest.Net/
161+
162+
# Web workbench (sass)
163+
.sass-cache/
164+
165+
# Installshield output folder
166+
[Ee]xpress/
167+
168+
# DocProject is a documentation generator add-in
169+
DocProject/buildhelp/
170+
DocProject/Help/*.HxT
171+
DocProject/Help/*.HxC
172+
DocProject/Help/*.hhc
173+
DocProject/Help/*.hhk
174+
DocProject/Help/*.hhp
175+
DocProject/Help/Html2
176+
DocProject/Help/html
177+
178+
# Click-Once directory
179+
publish/
180+
181+
# Publish Web Output
182+
*.[Pp]ublish.xml
183+
*.azurePubxml
184+
# Note: Comment the next line if you want to checkin your web deploy settings,
185+
# but database connection strings (with potential passwords) will be unencrypted
186+
*.pubxml
187+
*.publishproj
188+
189+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
190+
# checkin your Azure Web App publish settings, but sensitive information contained
191+
# in these scripts will be unencrypted
192+
PublishScripts/
193+
194+
# NuGet Packages
195+
*.nupkg
196+
# The packages folder can be ignored because of Package Restore
197+
**/[Pp]ackages/*
198+
# except build/, which is used as an MSBuild target.
199+
!**/[Pp]ackages/build/
200+
# Uncomment if necessary however generally it will be regenerated when needed
201+
#!**/[Pp]ackages/repositories.config
202+
# NuGet v3's project.json files produces more ignorable files
203+
*.nuget.props
204+
*.nuget.targets
205+
206+
# Microsoft Azure Build Output
207+
csx/
208+
*.build.csdef
209+
210+
# Microsoft Azure Emulator
211+
ecf/
212+
rcf/
213+
214+
# Windows Store app package directories and files
215+
AppPackages/
216+
BundleArtifacts/
217+
Package.StoreAssociation.xml
218+
_pkginfo.txt
219+
*.appx
220+
221+
# Visual Studio cache files
222+
# files ending in .cache can be ignored
223+
*.[Cc]ache
224+
# but keep track of directories ending in .cache
225+
!*.[Cc]ache/
226+
227+
# Others
228+
ClientBin/
229+
~$*
230+
*~
231+
*.dbmdl
232+
*.dbproj.schemaview
233+
*.jfm
234+
*.pfx
235+
*.publishsettings
236+
orleans.codegen.cs
237+
238+
# Since there are multiple workflows, uncomment next line to ignore bower_components
239+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
240+
#bower_components/
241+
242+
# RIA/Silverlight projects
243+
Generated_Code/
244+
245+
# Backup & report files from converting an old project file
246+
# to a newer Visual Studio version. Backup files are not needed,
247+
# because we have git ;-)
248+
_UpgradeReport_Files/
249+
Backup*/
250+
UpgradeLog*.XML
251+
UpgradeLog*.htm
252+
253+
# SQL Server files
254+
*.mdf
255+
*.ldf
256+
*.ndf
257+
258+
# Business Intelligence projects
259+
*.rdl.data
260+
*.bim.layout
261+
*.bim_*.settings
262+
263+
# Microsoft Fakes
264+
FakesAssemblies/
265+
266+
# GhostDoc plugin setting file
267+
*.GhostDoc.xml
268+
269+
# Node.js Tools for Visual Studio
270+
.ntvs_analysis.dat
271+
node_modules/
272+
273+
# Typescript v1 declaration files
274+
typings/
275+
276+
# Visual Studio 6 build log
277+
*.plg
278+
279+
# Visual Studio 6 workspace options file
280+
*.opt
281+
282+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
283+
*.vbw
284+
285+
# Visual Studio LightSwitch build output
286+
**/*.HTMLClient/GeneratedArtifacts
287+
**/*.DesktopClient/GeneratedArtifacts
288+
**/*.DesktopClient/ModelManifest.xml
289+
**/*.Server/GeneratedArtifacts
290+
**/*.Server/ModelManifest.xml
291+
_Pvt_Extensions
292+
293+
# Paket dependency manager
294+
.paket/paket.exe
295+
paket-files/
296+
297+
# FAKE - F# Make
298+
.fake/
299+
300+
# JetBrains Rider
301+
.idea/
302+
*.sln.iml
303+
304+
# CodeRush
305+
.cr/
306+
307+
# Python Tools for Visual Studio (PTVS)
308+
__pycache__/
309+
*.pyc
310+
311+
# Cake - Uncomment if you are using it
312+
# tools/**
313+
# !tools/packages.config
314+
315+
# Tabs Studio
316+
*.tss
317+
318+
# Telerik's JustMock configuration file
319+
*.jmconfig
320+
321+
# BizTalk build output
322+
*.btp.cs
323+
*.btm.cs
324+
*.odx.cs
325+
*.xsd.cs

docs/sprint-4/Dislike Product.jpg

28.2 KB
Loading

docs/sprint-4/Follow user.jpg

20.3 KB
Loading

docs/sprint-4/Like Product.jpg

28 KB
Loading

docs/sprint-4/Meeting Minutes.docx

6.73 KB
Binary file not shown.

docs/sprint-4/Previous Product.jpg

25 KB
Loading

docs/sprint-4/Project Plan.mpp

600 KB
Binary file not shown.

docs/sprint-4/README

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Sprint 4 documentation folder

docs/sprint-4/Risks for Sprint 4.xlsx

24 KB
Binary file not shown.
1.49 MB
Binary file not shown.
7.74 KB
Binary file not shown.

docs/sprint-4/UI Specifications.docx

5.26 KB
Binary file not shown.

docs/sprint-4/Unit Tests.docx

5.24 KB
Binary file not shown.
18 KB
Loading

docs/sprint-4/Use Cases.docx

6.05 KB
Binary file not shown.

docs/sprint-4/User Scenarios.docx

6.42 KB
Binary file not shown.

docs/sprint-4/brand-central-liked.png

65 KB
Loading

0 commit comments

Comments
 (0)