Skip to content

Commit 1d02545

Browse files
committed
chore: set-up deployment details for digitalocean
1 parent d17fecc commit 1d02545

File tree

6 files changed

+88
-22
lines changed

6 files changed

+88
-22
lines changed

.dockerignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.env
2+
target/
3+
tests/
4+
Dockerfile
5+
scripts/
6+
migrations/

Cargo.toml

+7-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,10 @@ sqlx = { version = "0.5.7", default-features = false, features = ["offline", "ru
2929

3030
[dev-dependencies]
3131
reqwest = "0.11.18"
32-
once_cell = "1"
32+
once_cell = "1"
33+
34+
[profile.release]
35+
strip = true
36+
opt-level = "z"
37+
lto = true
38+
codegen-units = 1

Dockerfile

+25-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,30 @@
1-
# We use the latest Rust stable release as base image
2-
FROM rust:1.69.0
3-
# Let's switch our working directory to `app` (equivalent to `cd app`)
4-
# The `app` folder will be created for us by Docker in case it does not
5-
# exist already.
1+
FROM lukemathwalker/cargo-chef:latest-rust-1.69.0 as chef
62
WORKDIR /app
7-
# Install the required system dependencies for our linking configuration
83
RUN apt update && apt install lld clang -y
9-
# Copy all files from our working environment to our Docker image
4+
5+
FROM chef as planner
6+
COPY . .
7+
# Compute a lock-like file for our project
8+
RUN cargo chef prepare --recipe-path recipe.json
9+
10+
FROM chef as builder
11+
COPY --from=planner /app/recipe.json recipe.json
12+
# Build our project dependencies, not our application!
13+
RUN cargo chef cook --release --recipe-path recipe.json
1014
COPY . .
11-
# Enable offline compilation for sqlx
1215
ENV SQLX_OFFLINE true
13-
# Let's build our binary!
14-
# We'll use the release profile to make it faaaast
15-
RUN cargo build --release
16-
# Instruct the binary in our Docker image to use the production configuration
16+
# Build our project
17+
RUN cargo build --release --bin robust-rust
18+
19+
FROM debian:bullseye-slim AS runtime
20+
WORKDIR /app
21+
RUN apt-get update -y \
22+
&& apt-get install -y --no-install-recommends openssl ca-certificates \
23+
# Clean up
24+
&& apt-get autoremove -y \
25+
&& apt-get clean -y \
26+
&& rm -rf /var/lib/apt/lists/*
27+
COPY --from=builder /app/target/release/robust-rust robust-rust
28+
COPY configuration configuration
1729
ENV APP_ENVIRONMENT production
18-
# When `docker run` is executed, launch the
19-
ENTRYPOINT ["./target/release/robust-rust"]
30+
ENTRYPOINT ["./robust-rust"]

spec.yaml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
#! spec.yaml
2+
name: robust-rust
3+
# Check https://www.digitalocean.com/docs/app-platform/#regional-availability
4+
# for a list of all the available options.
5+
# You can get region slugs from
6+
# https://www.digitalocean.com/docs/platform/availability-matrix/
7+
# They must specified lowercased.
8+
# `fra` stands for Frankfurt (Germany - EU)
9+
region: fra
10+
services:
11+
- name: robust-rust
12+
# Relative to the repository root
13+
dockerfile_path: Dockerfile
14+
source_dir: .
15+
github:
16+
# Depending on when you created the repository,
17+
# the default branch on GitHub might have been named `master`
18+
branch: main
19+
# Deploy a new version on every commit to `main`!
20+
# Continuous Deployment, here we come!
21+
deploy_on_push: true
22+
# !!! Fill in with your details
23+
# e.g. LukeMathWalker/zero-to-production
24+
repo: utilitycoder/robust-rust
25+
# Active probe used by DigitalOcean's to ensure our application is healthy
26+
health_check:
27+
# The path to our health check endpoint!
28+
# It turned out to be useful in the end!
29+
http_path: /health_check
30+
# The port the application will be listening on for incoming requests
31+
# It should match what we specified in our configuration/production.yaml file!
32+
http_port: 8000
33+
# For production workloads we'd go for at least two!
34+
# But let's try to keep the bill under control for now...
35+
instance_count: 1
36+
instance_size_slug: basic-xxs
37+
# All incoming requests should be routed to our app
38+
routes:
39+
- path: /

src/configuration.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ pub fn get_configuration() -> Result<Settings, config::ConfigError> {
6262

6363
// Layer on environment specific values
6464
settings.merge(
65-
config::File::from(configuration_directory.join(environment.as_str())).required(true)
65+
config::File::from(configuration_directory.join(environment.as_str())).required(true),
6666
)?;
6767

6868
settings.try_into()
@@ -90,7 +90,10 @@ impl TryFrom<String> for Environment {
9090
match value.to_lowercase().as_str() {
9191
"local" => Ok(Self::Local),
9292
"production" => Ok(Self::Production),
93-
_ => Err(format!("{} is not a supported environment. Use either local or production", value)),
93+
_ => Err(format!(
94+
"{} is not a supported environment. Use either local or production",
95+
value
96+
)),
9497
}
9598
}
96-
}
99+
}

src/main.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ use robust_rust::configuration::get_configuration;
22
use robust_rust::startup::run;
33
use robust_rust::telemetry::{get_subscriber, init_subscriber};
44
use secrecy::ExposeSecret;
5-
use sqlx::PgPool;
5+
use sqlx::postgres::PgPoolOptions;
66
use std::net::TcpListener;
77

88
#[tokio::main]
99
async fn main() -> std::io::Result<()> {
1010
let subscriber = get_subscriber("robust_rust".into(), "info".into(), std::io::stdout);
1111
init_subscriber(subscriber);
1212
let configuration = get_configuration().expect("Failed to read configuration.");
13-
let connection_pool =
14-
PgPool::connect_lazy(configuration.database.connection_string().expose_secret())
15-
.expect("Failed to connect to Postgres.");
13+
let connection_pool = PgPoolOptions::new()
14+
.connect_timeout(std::time::Duration::from_secs(2))
15+
.connect_lazy(configuration.database.connection_string().expose_secret())
16+
.expect("Failed to connect to Postgres.");
1617
let address = format!(
1718
"{}:{}",
1819
configuration.application.host, configuration.application.port

0 commit comments

Comments
 (0)