Skip to content

Commit

Permalink
fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyBuisset committed Sep 25, 2023
1 parent ab1e09e commit 6ed289e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions api/Procfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
web: ROCKET_PORT=$PORT ./backend/target/release/api
events_sanity_checks: RUST_LOG=info ./backend/target/release/events_sanity_checks
quotes_syncer: RUST_LOG=info ./backend/target/release/quotes_syncer
web: ROCKET_PORT=$PORT ./target/release/api
events_sanity_checks: RUST_LOG=info ./target/release/events_sanity_checks
quotes_syncer: RUST_LOG=info ./target/release/quotes_syncer
hasura: ./hasura/hasura.sh
refresh: RUST_LOG=info ./backend/target/release/refresh
refresh: RUST_LOG=info ./target/release/refresh
2 changes: 1 addition & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ coverage:
informational: true

ignore:
- "backend/common/infrastructure/src/database/schema.rs"
- "common/infrastructure/src/database/schema.rs"
2 changes: 1 addition & 1 deletion common/testing/src/context/coinmarketcap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn image(wiremock_path: String) -> RunnableImage<GenericImage> {
/* To record traffic, use the following command and change the port to 8080 in the config.base_url above
docker run \
-p 8080:8080 \
-v $PWD/backend/api/tests/resources/wiremock/coinmarketcap:/home/wiremock \
-v $PWD/api/tests/resources/wiremock/coinmarketcap:/home/wiremock \
wiremock/wiremock \
--proxy-all="https://pro-api.coinmarketcap.com" \
--record-mappings --verbose
Expand Down
8 changes: 4 additions & 4 deletions event-listeners/Procfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
event-listeners: ./backend/target/release/listeners
refresh: RUST_LOG=info ./backend/target/release/refresh_deprecated
github-indexer: ./backend/target/release/github-indexer
web: ROCKET_PORT=$PORT ./backend/target/release/event-listeners
event-listeners: ./target/release/listeners
refresh: RUST_LOG=info ./target/release/refresh_deprecated
github-indexer: ./target/release/github-indexer
web: ROCKET_PORT=$PORT ./target/release/event-listeners
2 changes: 1 addition & 1 deletion event-listeners/src/bin/refresh-deprecated/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ mod cli;
#[tokio::main]
async fn main() -> Result<()> {
dotenv().ok();
let config: Config = config::load("backend/event-listeners/src/bin/refresh/app.yaml")?;
let config: Config = config::load("event-listeners/src/bin/refresh/app.yaml")?;
let _tracer = Tracer::init(config.tracer, "refresh")?;

let registry = Registry::new();
Expand Down

0 comments on commit 6ed289e

Please sign in to comment.