Skip to content

Commit

Permalink
wip: github ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
pranshi06 committed Mar 22, 2024
1 parent 2ef47b0 commit 310b371
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Start Azure Cosmos DB emulator
run: docker run --detach --publish 8084:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest
run: docker run --detach --publish 8080:8081 --publish 10250-10255:10250-10255 mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest
- name: Setup database
# working-directory: script
run: sleep 100 && cd cosmos/script && npm install --save @azure/cosmos && node app.js
Expand Down
2 changes: 1 addition & 1 deletion connector_config_emulator.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"azure_cosmos_key": "C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==",
"azure_cosmos_db_endpoint": "https://localhost:8084/",
"azure_cosmos_db_endpoint": "https://localhost:8080/",
"azure_cosmos_db_name": "ConnectorTest",
"azure_cosmos_no_of_rows_to_fetch": 100
}
2 changes: 1 addition & 1 deletion script/app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CosmosClient } from '@azure/cosmos'

const cosmosClient = new CosmosClient({
endpoint: 'https://localhost:8084/',
endpoint: 'https://localhost:8080/',
key: 'C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw=='
})

Expand Down

0 comments on commit 310b371

Please sign in to comment.