Skip to content

Commit

Permalink
updates vscode settings to exclude dist for TS
Browse files Browse the repository at this point in the history
  • Loading branch information
FlacoJones committed Feb 11, 2023
1 parent c8991b1 commit 84a1873
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ OpenQ-User-Registration/
OpenQ-Espresso/
OpenQ-Email-Server/
OpenQ-Document-Manager/
OpenQ-Batch-Master/

# Data from The Graph Node's Postgres and IPFS
data/
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"**/cache": true,
"**/yarn.lock": true,
"**/generated": true,
"**/typechain": true
"**/typechain": true,
"**/dist": true
},
"search.useIgnoreFiles": false,
// The number of spaces a tab is equal to. This setting is overridden
Expand Down
1 change: 0 additions & 1 deletion OpenQ-Invoice-Server
Submodule OpenQ-Invoice-Server deleted from 7a3df9
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ services:
POSTGRES_USER: graph-node
POSTGRES_PASSWORD: let-me-in
POSTGRES_DB: graph-node
# MICROSERVICE
openq-oracle:
container_name: openq-oracle
depends_on:
Expand Down Expand Up @@ -110,13 +111,13 @@ services:
dockerfile: Dockerfile
context: ./OpenQ-Document-Manager
env_file:
- .//OpenQ-Document-Manager/.env
- ./OpenQ-Document-Manager/.env
- ./OpenQ-Contracts/.env.contracts
ports:
- "8092:8092"
volumes:
- /app/node_modules
- .//OpenQ-Document-Manager:/app
- ./OpenQ-Document-Manager:/app
openq-oz-claim-autotask:
container_name: openq-oz-claim-autotask
depends_on:
Expand Down
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,15 @@ declare -a repos=(
"OpenQ-API"
"OpenQ-Architecture"
"OpenQ-Github-Proxy"
"OpenQ-Email-Server"
"OpenQ-OZ-Claim-Autotask"
"OpenQ-Bounty-Actions-Autotask"
"OpenQ-Event-Listener"
"OpenQ-Token-Price-Cron-Job"
"Superfluid-Subgraph"
"OpenQ-User-Registration"
"OpenQ-Email-Server"
"OpenQ-Document-Manager"
"OpenQ-Batch-Master"
)

for repo in "${repos[@]}"; do
Expand Down

0 comments on commit 84a1873

Please sign in to comment.