[PR #248] New sample: React + ASP.NET and MongoDB 🚀 #926

Open
opened 2026-03-07 21:27:00 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/docker/awesome-compose/pull/248
Author: @stvansolano
Created: 6/13/2022
Status: 🔄 Open

Base: masterHead: master


📝 Commits (9)

📊 Changes

30 files changed (+13735 additions, -0 deletions)

View changed files

📝 README.md (+2 -0)
react-aspnet-mongodb/backend/.gitignore (+350 -0)
react-aspnet-mongodb/backend/Dockerfile (+17 -0)
react-aspnet-mongodb/backend/Program.cs (+90 -0)
react-aspnet-mongodb/backend/ToDo.cs (+13 -0)
react-aspnet-mongodb/backend/appsettings.json (+14 -0)
react-aspnet-mongodb/backend/aspnetapp.csproj (+11 -0)
react-aspnet-mongodb/compose.yaml (+58 -0)
react-aspnet-mongodb/frontend/.dockerignore (+2 -0)
react-aspnet-mongodb/frontend/.gitignore (+23 -0)
react-aspnet-mongodb/frontend/Dockerfile (+26 -0)
react-aspnet-mongodb/frontend/nginx.conf (+30 -0)
react-aspnet-mongodb/frontend/package-lock.json (+12644 -0)
react-aspnet-mongodb/frontend/package.json (+43 -0)
react-aspnet-mongodb/frontend/public/favicon.ico (+0 -0)
react-aspnet-mongodb/frontend/public/index.html (+43 -0)
react-aspnet-mongodb/frontend/public/logo192.png (+0 -0)
react-aspnet-mongodb/frontend/public/logo512.png (+0 -0)
react-aspnet-mongodb/frontend/public/manifest.json (+25 -0)
react-aspnet-mongodb/frontend/public/robots.txt (+3 -0)

...and 10 more files

📄 Description

  • Used same todos react code samples from repo
  • Added MongoDB sample with mongo-express
  • Updated README.md files accordingly

🔄 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/248 **Author:** [@stvansolano](https://github.com/stvansolano) **Created:** 6/13/2022 **Status:** 🔄 Open **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (9) - [`4d1e8e9`](https://github.com/docker/awesome-compose/commit/4d1e8e9f00079e4c600e4f8ae7cf73bae6f5c97b) Added frontend - [`c4c4136`](https://github.com/docker/awesome-compose/commit/c4c41363522610006ac8d9bd340344e7607fd528) Added compose.yaml - [`718df2a`](https://github.com/docker/awesome-compose/commit/718df2a62db54f6aa75660f3f35b2e098845ef1c) Added backend - [`996b7ac`](https://github.com/docker/awesome-compose/commit/996b7ac9bff1cfd837f1ea86af0172435f9791f0) Frontend+Backend fixes - [`bd401b3`](https://github.com/docker/awesome-compose/commit/bd401b3c936346ad9b5a0e9c2bc37cd790305912) API enhancements - [`3a1b567`](https://github.com/docker/awesome-compose/commit/3a1b5677a169243563f7eebdd8c2252a28733039) Clean-up - [`c0c1e7c`](https://github.com/docker/awesome-compose/commit/c0c1e7ca94c4dac7d61dedce0b3bf6eb6b798dc0) Updated main README.md - [`7e7ecaf`](https://github.com/docker/awesome-compose/commit/7e7ecaf65a438a55ac5fd2b73cd0afe50b444d99) Enable swagger with flag - [`7530b7b`](https://github.com/docker/awesome-compose/commit/7530b7b27b5e01ce8379772dddb927e613bce5e9) Added mongo-express ### 📊 Changes **30 files changed** (+13735 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+2 -0) ➕ `react-aspnet-mongodb/backend/.gitignore` (+350 -0) ➕ `react-aspnet-mongodb/backend/Dockerfile` (+17 -0) ➕ `react-aspnet-mongodb/backend/Program.cs` (+90 -0) ➕ `react-aspnet-mongodb/backend/ToDo.cs` (+13 -0) ➕ `react-aspnet-mongodb/backend/appsettings.json` (+14 -0) ➕ `react-aspnet-mongodb/backend/aspnetapp.csproj` (+11 -0) ➕ `react-aspnet-mongodb/compose.yaml` (+58 -0) ➕ `react-aspnet-mongodb/frontend/.dockerignore` (+2 -0) ➕ `react-aspnet-mongodb/frontend/.gitignore` (+23 -0) ➕ `react-aspnet-mongodb/frontend/Dockerfile` (+26 -0) ➕ `react-aspnet-mongodb/frontend/nginx.conf` (+30 -0) ➕ `react-aspnet-mongodb/frontend/package-lock.json` (+12644 -0) ➕ `react-aspnet-mongodb/frontend/package.json` (+43 -0) ➕ `react-aspnet-mongodb/frontend/public/favicon.ico` (+0 -0) ➕ `react-aspnet-mongodb/frontend/public/index.html` (+43 -0) ➕ `react-aspnet-mongodb/frontend/public/logo192.png` (+0 -0) ➕ `react-aspnet-mongodb/frontend/public/logo512.png` (+0 -0) ➕ `react-aspnet-mongodb/frontend/public/manifest.json` (+25 -0) ➕ `react-aspnet-mongodb/frontend/public/robots.txt` (+3 -0) _...and 10 more files_ </details> ### 📄 Description - Used same `todos` react code samples from repo - Added MongoDB sample with mongo-express - Updated README.md files accordingly --- <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:27:00 -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#926