Skip to content

Commit ef0a485

Browse files
authored
Merge pull request #2 from FrendsPlatform/ISSUE-1
ISSUE-1: Initial implementation of ExecuteQuery
2 parents b712d68 + 954b3da commit ef0a485

18 files changed

Lines changed: 822 additions & 1 deletion
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ExecuteQuery build main
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'Frends.PostgreSQL.ExecuteQuery/**'
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
uses: FrendsPlatform/FrendsTasks/.github/workflows/linux_build_main.yml@main
14+
with:
15+
workdir: Frends.PostgreSQL.ExecuteQuery
16+
prebuild_command: docker run -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -d postgres
17+
secrets:
18+
badge_service_api_key: ${{ secrets.BADGE_SERVICE_API_KEY }}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: ExecuteQuery build test
2+
3+
on:
4+
push:
5+
branches-ignore:
6+
- main
7+
paths:
8+
- 'Frends.PostgreSQL.ExecuteQuery/**'
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
uses: FrendsPlatform/FrendsTasks/.github/workflows/linux_build_test.yml@main
14+
with:
15+
workdir: Frends.PostgreSQL.ExecuteQuery
16+
prebuild_command: docker run -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -d postgres
17+
secrets:
18+
badge_service_api_key: ${{ secrets.BADGE_SERVICE_API_KEY }}
19+
test_feed_api_key: ${{ secrets.TASKS_TEST_FEED_API_KEY }}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: ExecuteQuery release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
uses: FrendsPlatform/FrendsTasks/.github/workflows/release.yml@main
9+
with:
10+
workdir: Frends.PostgreSQL.ExecuteQuery
11+
secrets:
12+
feed_api_key: ${{ secrets.TASKS_FEED_API_KEY }}

.gitignore

Lines changed: 252 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,252 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.userosscache
8+
*.sln.docstates
9+
10+
# User-specific files (MonoDevelop/Xamarin Studio)
11+
*.userprefs
12+
13+
.DS_Store
14+
.idea
15+
.vscode
16+
17+
# Build results
18+
[Dd]ebug/
19+
[Dd]ebugPublic/
20+
[Rr]elease/
21+
[Rr]eleases/
22+
[Xx]64/
23+
[Xx]86/
24+
[Bb]uild/
25+
bld/
26+
[Bb]in/
27+
[Oo]bj/
28+
29+
# Visual Studio 2015 cache/options directory
30+
.vs/
31+
# Uncomment if you have tasks that create the project's static files in wwwroot
32+
#wwwroot/
33+
34+
# MSTest test Results
35+
[Tt]est[Rr]esult*/
36+
[Bb]uild[Ll]og.*
37+
38+
# NUNIT
39+
*.VisualState.xml
40+
TestResult.xml
41+
42+
# Build Results of an ATL Project
43+
[Dd]ebugPS/
44+
[Rr]eleasePS/
45+
dlldata.c
46+
47+
# DNX
48+
project.lock.json
49+
artifacts/
50+
51+
*_i.c
52+
*_p.c
53+
*_i.h
54+
*.ilk
55+
*.meta
56+
*.obj
57+
*.pch
58+
*.pdb
59+
*.pgc
60+
*.pgd
61+
*.rsp
62+
*.sbr
63+
*.tlb
64+
*.tli
65+
*.tlh
66+
*.tmp
67+
*.tmp_proj
68+
*.log
69+
*.vspscc
70+
*.vssscc
71+
.builds
72+
*.pidb
73+
*.svclog
74+
*.scc
75+
76+
# Chutzpah Test files
77+
_Chutzpah*
78+
79+
# Visual C++ cache files
80+
ipch/
81+
*.aps
82+
*.ncb
83+
*.opendb
84+
*.opensdf
85+
*.sdf
86+
*.cachefile
87+
*.VC.db
88+
89+
# Visual Studio profiler
90+
*.psess
91+
*.vsp
92+
*.vspx
93+
*.sap
94+
95+
# TFS 2012 Local Workspace
96+
$tf/
97+
98+
# Guidance Automation Toolkit
99+
*.gpState
100+
101+
# ReSharper is a .NET coding add-in
102+
_ReSharper*/
103+
*.[Rr]e[Ss]harper
104+
*.DotSettings.user
105+
106+
# JustCode is a .NET coding add-in
107+
.JustCode
108+
109+
# TeamCity is a build add-in
110+
_TeamCity*
111+
112+
# DotCover is a Code Coverage Tool
113+
*.dotCover
114+
115+
# NCrunch
116+
_NCrunch_*
117+
.*crunch*.local.xml
118+
nCrunchTemp_*
119+
120+
# MightyMoose
121+
*.mm.*
122+
AutoTest.Net/
123+
124+
# Web workbench (sass)
125+
.sass-cache/
126+
127+
# Installshield output folder
128+
[Ee]xpress/
129+
130+
# DocProject is a documentation generator add-in
131+
DocProject/buildhelp/
132+
DocProject/Help/*.HxT
133+
DocProject/Help/*.HxC
134+
DocProject/Help/*.hhc
135+
DocProject/Help/*.hhk
136+
DocProject/Help/*.hhp
137+
DocProject/Help/Html2
138+
DocProject/Help/html
139+
140+
# Click-Once directory
141+
publish/
142+
143+
# Publish Web Output
144+
*.[Pp]ublish.xml
145+
*.azurePubxml
146+
147+
# TODO: Un-comment the next line if you do not want to checkin
148+
# your web deploy settings because they may include unencrypted
149+
# passwords
150+
#*.pubxml
151+
*.publishproj
152+
153+
# NuGet Packages
154+
*.nupkg
155+
# The packages folder can be ignored because of Package Restore
156+
**/packages/*
157+
# except build/, which is used as an MSBuild target.
158+
!**/packages/build/
159+
# Uncomment if necessary however generally it will be regenerated when needed
160+
#!**/packages/repositories.config
161+
# NuGet v3's project.json files produces more ignoreable files
162+
*.nuget.props
163+
*.nuget.targets
164+
165+
# Microsoft Azure Build Output
166+
csx/
167+
*.build.csdef
168+
169+
# Microsoft Azure Emulator
170+
ecf/
171+
rcf/
172+
173+
# Windows Store app package directory
174+
AppPackages/
175+
BundleArtifacts/
176+
177+
# Visual Studio cache files
178+
# files ending in .cache can be ignored
179+
*.[Cc]ache
180+
# but keep track of directories ending in .cache
181+
!*.[Cc]ache/
182+
183+
# Others
184+
ClientBin/
185+
[Ss]tyle[Cc]op.*
186+
~$*
187+
*~
188+
*.dbmdl
189+
*.dbproj.schemaview
190+
*.pfx
191+
*.publishsettings
192+
node_modules/
193+
orleans.codegen.cs
194+
195+
# RIA/Silverlight projects
196+
Generated_Code/
197+
198+
# Backup & report files from converting an old project file
199+
# to a newer Visual Studio version. Backup files are not needed,
200+
# because we have git ;-)
201+
_UpgradeReport_Files/
202+
Backup*/
203+
UpgradeLog*.XML
204+
UpgradeLog*.htm
205+
206+
# SQL Server files
207+
*.mdf
208+
*.ldf
209+
210+
# Business Intelligence projects
211+
*.rdl.data
212+
*.bim.layout
213+
*.bim_*.settings
214+
215+
# Microsoft Fakes
216+
FakesAssemblies/
217+
218+
# GhostDoc plugin setting file
219+
*.GhostDoc.xml
220+
221+
# Node.js Tools for Visual Studio
222+
.ntvs_analysis.dat
223+
224+
# Visual Studio 6 build log
225+
*.plg
226+
227+
# Visual Studio 6 workspace options file
228+
*.opt
229+
230+
# Visual Studio LightSwitch build output
231+
**/*.HTMLClient/GeneratedArtifacts
232+
**/*.DesktopClient/GeneratedArtifacts
233+
**/*.DesktopClient/ModelManifest.xml
234+
**/*.Server/GeneratedArtifacts
235+
**/*.Server/ModelManifest.xml
236+
_Pvt_Extensions
237+
238+
# LightSwitch generated files
239+
GeneratedArtifacts/
240+
ModelManifest.xml
241+
242+
# Paket dependency manager
243+
.paket/paket.exe
244+
245+
# FAKE - F# Make
246+
.fake/
247+
248+
# Autogenerated XML documentation file
249+
Frends.Community.*/Frends.Community.*/Frends.Community.*.xml
250+
251+
# PowerShell scripts
252+
*.ps1
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## [1.0.0] - 2022-10-13
4+
### Added
5+
- Initial implementation

0 commit comments

Comments
 (0)