[PR #35] [MERGED] create a react-rust-postgres example #765

Closed
opened 2026-03-07 21:23:29 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/35
Author: @jdrouet
Created: 3/26/2020
Status: Merged
Merged: 3/27/2020
Merged by: @glours

Base: masterHead: react-rust


📝 Commits (4)

  • bdd0256 react-rust-postgres: create simple server
  • bed22c7 react-rust-postgres: create simple client
  • b73e252 react-rust-postgres: add connection to postgres with migrations
  • 7d518e1 react-rust-postgres: add readmes

📊 Changes

39 files changed (+15883 additions, -1 deletions)

View changed files

📝 README.md (+3 -1)
react-rust-postgres/backend/.dockerignore (+2 -0)
react-rust-postgres/backend/.gitignore (+2 -0)
react-rust-postgres/backend/Cargo.toml (+23 -0)
react-rust-postgres/backend/Dockerfile (+35 -0)
react-rust-postgres/backend/diesel.toml (+5 -0)
react-rust-postgres/backend/migrations/.gitkeep (+0 -0)
react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/down.sql (+6 -0)
react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/up.sql (+36 -0)
react-rust-postgres/backend/migrations/2020-03-26-084736_create_people/down.sql (+1 -0)
react-rust-postgres/backend/migrations/2020-03-26-084736_create_people/up.sql (+4 -0)
react-rust-postgres/backend/readme.md (+4 -0)
react-rust-postgres/backend/src/main.rs (+96 -0)
react-rust-postgres/backend/src/schema.rs (+6 -0)
react-rust-postgres/backend/src/user.rs (+18 -0)
react-rust-postgres/capture.png (+0 -0)
react-rust-postgres/docker-compose.yaml (+43 -0)
react-rust-postgres/frontend/.dockerignore (+2 -0)
react-rust-postgres/frontend/.gitignore (+23 -0)
react-rust-postgres/frontend/Dockerfile (+20 -0)

...and 19 more files

📄 Description

Create a example of usage with rust.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/docker/awesome-compose/pull/35 **Author:** [@jdrouet](https://github.com/jdrouet) **Created:** 3/26/2020 **Status:** ✅ Merged **Merged:** 3/27/2020 **Merged by:** [@glours](https://github.com/glours) **Base:** `master` ← **Head:** `react-rust` --- ### 📝 Commits (4) - [`bdd0256`](https://github.com/docker/awesome-compose/commit/bdd0256bfc3331b38508125a79a1061f597fcc18) react-rust-postgres: create simple server - [`bed22c7`](https://github.com/docker/awesome-compose/commit/bed22c74f52dafb252aa9f96b9e9434c0f341e01) react-rust-postgres: create simple client - [`b73e252`](https://github.com/docker/awesome-compose/commit/b73e252639a71fca35cc9ce4bbb3ac9fc1140213) react-rust-postgres: add connection to postgres with migrations - [`7d518e1`](https://github.com/docker/awesome-compose/commit/7d518e11da3f75c9c96467e49729d79a0ae9b0d4) react-rust-postgres: add readmes ### 📊 Changes **39 files changed** (+15883 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+3 -1) ➕ `react-rust-postgres/backend/.dockerignore` (+2 -0) ➕ `react-rust-postgres/backend/.gitignore` (+2 -0) ➕ `react-rust-postgres/backend/Cargo.toml` (+23 -0) ➕ `react-rust-postgres/backend/Dockerfile` (+35 -0) ➕ `react-rust-postgres/backend/diesel.toml` (+5 -0) ➕ `react-rust-postgres/backend/migrations/.gitkeep` (+0 -0) ➕ `react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/down.sql` (+6 -0) ➕ `react-rust-postgres/backend/migrations/00000000000000_diesel_initial_setup/up.sql` (+36 -0) ➕ `react-rust-postgres/backend/migrations/2020-03-26-084736_create_people/down.sql` (+1 -0) ➕ `react-rust-postgres/backend/migrations/2020-03-26-084736_create_people/up.sql` (+4 -0) ➕ `react-rust-postgres/backend/readme.md` (+4 -0) ➕ `react-rust-postgres/backend/src/main.rs` (+96 -0) ➕ `react-rust-postgres/backend/src/schema.rs` (+6 -0) ➕ `react-rust-postgres/backend/src/user.rs` (+18 -0) ➕ `react-rust-postgres/capture.png` (+0 -0) ➕ `react-rust-postgres/docker-compose.yaml` (+43 -0) ➕ `react-rust-postgres/frontend/.dockerignore` (+2 -0) ➕ `react-rust-postgres/frontend/.gitignore` (+23 -0) ➕ `react-rust-postgres/frontend/Dockerfile` (+20 -0) _...and 19 more files_ </details> ### 📄 Description Create a example of usage with rust. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-03-07 21:23:29 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/awesome-compose#765