Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-app-donations
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-app-donations
Commits
919c869d
Commit
919c869d
authored
1 year ago
by
Malte Finsterwalder
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' into production
parents
a026dc77
44e416ce
No related branches found
Branches containing commit
Tags
release/1.7.2
release/1.7.3
release/1.7.4
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
README.md
+1
-1
1 addition, 1 deletion
README.md
app/server.ts
+1
-1
1 addition, 1 deletion
app/server.ts
with
4 additions
and
4 deletions
.gitlab-ci.yml
+
1
−
1
View file @
919c869d
...
...
@@ -47,7 +47,7 @@ variables:
## common steps
cache_lint_test
:
image
:
'
denoland/deno:alpine-1.
28
.1'
image
:
'
denoland/deno:alpine-1.
36
.1'
stage
:
'
test'
script
:
-
deno cache --lock=deno.lock app/deps.ts app/dev_deps.ts
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
1
View file @
919c869d
FROM
denoland/deno:alpine-1.
28
.1
FROM
denoland/deno:alpine-1.
36
.1
# The port that your application listens to.
EXPOSE
8001
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
919c869d
...
...
@@ -27,7 +27,7 @@ The backend for handling donation projects, including a GraphQL API for
### Setup
Install
[
`deno`
](
https://github.com/denoland/deno_install
)
in version 1.
25
.1
Install
[
`deno`
](
https://github.com/denoland/deno_install
)
in version 1.
36
.1
as well as
[
`Velociraptor`
](
https://velociraptor.run/docs/installation/
)
.
...
...
This diff is collapsed.
Click to expand it.
app/server.ts
+
1
−
1
View file @
919c869d
...
...
@@ -75,7 +75,7 @@ const typeDefs = `
type Query {
# uses offset-based pagination as described in https://www.apollographql.com/docs/react/pagination/offset-based
projects(offset: Int, limit: Int, location: String): ProjectsResponse!
projects(offset: Int
= 0
, limit: Int
= 10
, location: String): ProjectsResponse!
project(id: Int!): Project!
}
`
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment