-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
52 additions
and
47 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
FROM rust:bookworm-slim | ||
|
||
RUN apt-get --yes update && apt-get --yes install curl git pkg-config libssl-dev | ||
RUN cargo install cargo-watch | ||
RUN rustup component add clippy-preview | ||
RUN rustup component add rustfmt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM postgres:latest | ||
|
||
RUN psql -c "CREATE DATABASE aardwolf;" | ||
RUN psql -c "CREATE USER aardwolf WITH PASSWORD 'p4ssw0rd'" | ||
RUN psql -c "GRANT ALL PRIVILEGES ON DATABASE aardwolf TO aardwolf;" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM rust:bookworm-slim | ||
|
||
RUN apt-get --yes update && apt-get --yes install git pkg-config libssl-dev | ||
RUN cargo install wasm-bindgen-cli | ||
RUN cargo install trunk | ||
RUN rustup target add wasm32-unknown-unknown | ||
RUN rustup component add clippy-preview | ||
RUN rustup component add rustfmt |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters