Skip to content

Commit

Permalink
Lexemes: Quick Search (#292)
Browse files Browse the repository at this point in the history
closes #292
  • Loading branch information
dwhieb committed Apr 30, 2023
1 parent 73586ab commit fceea36
Show file tree
Hide file tree
Showing 14 changed files with 179 additions and 133 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
workflow_dispatch:

env:
COSMOS_DB_NAME: test
COSMOS_ENDPOINT: https://localhost:8081
COSMOS_KEY: C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw== # well-known key for Cosmos DB emulator
LOGGING: TRUE
Expand Down
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",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\index.js"
}
]
}
4 changes: 4 additions & 0 deletions assets/images/search.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions assets/images/x-circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions components/Button/Button.less
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import 'node_modules/@digitallinguistics/design/components/Button/Button.less';
2 changes: 1 addition & 1 deletion middleware/logger.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default function logger(req, res, next) {

if (process.env.LOGGING) {
console.info(`${ new Date().toString() }: ${ req.originalUrl }`)
console.info(`${ new Date().toString() }: ${ req.method } ${ req.originalUrl }`)
}

next()
Expand Down
Loading

0 comments on commit fceea36

Please sign in to comment.