Skip to content

Commit feac6b8

Browse files
authored
chore: rename oauth-api to oauth-refresh (#18)
1 parent 81c8f87 commit feac6b8

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "oauth-api"
2+
name = "oauth-refresh"
33
version = "0.1.0"
44
edition = "2021"
55

@@ -43,7 +43,7 @@ tracing-subscriber = { version = "0.3.18", features = [
4343
path = "src/lib.rs"
4444

4545
[[bin]]
46-
name = "oauth-api"
46+
name = "oauth-refresh"
4747
path = "src/main.rs"
4848

4949
[dev-dependencies]

Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
FROM lukemathwalker/cargo-chef:latest-rust-1.77.0 AS chef
2-
WORKDIR /app/oauth-api
2+
WORKDIR /app/oauth-refresh
33

44
FROM chef AS planner
55
COPY . .
66
RUN cargo chef prepare --recipe-path recipe.json
77

88
FROM chef AS builder
9-
COPY --from=planner /app/oauth-api/recipe.json recipe.json
9+
COPY --from=planner /app/oauth-refresh/recipe.json recipe.json
1010
# Build dependencies - this is the caching Docker layer!
11-
RUN cargo chef cook --release --recipe-path recipe.json --bin oauth-api
11+
RUN cargo chef cook --release --recipe-path recipe.json --bin oauth-refresh
1212
# Build application
1313
COPY . .
14-
RUN cargo build --release --bin oauth-api
14+
RUN cargo build --release --bin oauth-refresh
1515

1616
FROM debian:bookworm-slim AS runtime
1717
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
1818
WORKDIR /app
19-
COPY --from=builder /app/oauth-api/target/release/oauth-api /usr/local/bin
20-
ENTRYPOINT /usr/local/bin/oauth-api
19+
COPY --from=builder /app/oauth-refresh/target/release/oauth-refresh /usr/local/bin
20+
ENTRYPOINT /usr/local/bin/oauth-refresh

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# OAuth API
1+
# OAuth Refresh
22

33
This is an API that uses OAuth2.0 blueprints to both refresh tokens and trigger the authorization code flow.

src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
use dotenvy::dotenv;
22
use envconfig::Envconfig;
33
use integrationos_domain::telemetry::{get_subscriber, init_subscriber};
4-
use oauth_api::{refresh, AppState, Refresh, RefreshConfig};
4+
use oauth_refresh::{refresh, AppState, Refresh, RefreshConfig};
55
use std::time::Duration;
66

77
#[tokio::main]
88
async fn main() -> anyhow::Result<()> {
99
dotenv().ok();
1010

11-
let suscriber = get_subscriber("oauth-api".into(), "info".into(), std::io::stdout);
11+
let suscriber = get_subscriber("oauth-refresh".into(), "info".into(), std::io::stdout);
1212
init_subscriber(suscriber);
1313

1414
let configuration = RefreshConfig::init_from_env()?;

0 commit comments

Comments
 (0)