Skip to content

Commit

Permalink
add deals module
Browse files Browse the repository at this point in the history
get endpoint with category, start and limit params
GG ez
  • Loading branch information
pgvr committed Jun 18, 2019
1 parent 0438385 commit cb0ec9a
Show file tree
Hide file tree
Showing 20 changed files with 345 additions and 161 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DATABASE_URI=connectionstring
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
credentials.py
.env
__pycache__
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/backend/src/deals/deals.controller.ts",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
14 changes: 7 additions & 7 deletions backend/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"printWidth": 120,
"useTabs": true,
"tabWidth": 4,
"semi": true
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"printWidth": 120,
"useTabs": false,
"tabWidth": 4,
"semi": true
}
75 changes: 0 additions & 75 deletions backend/README.md

This file was deleted.

Loading

0 comments on commit cb0ec9a

Please sign in to comment.