Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colinwu0403/asp.net_reactnative
ASP.NET Core 6.0, MongoDB, and React Native with TailwindCSS Template Project
https://github.com/colinwu0403/asp.net_reactnative
asp-net-core mongodb react-native
Last synced: 6 days ago
JSON representation
ASP.NET Core 6.0, MongoDB, and React Native with TailwindCSS Template Project
- Host: GitHub
- URL: https://github.com/colinwu0403/asp.net_reactnative
- Owner: ColinWu0403
- Created: 2024-06-13T08:32:54.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T14:31:44.000Z (4 months ago)
- Last Synced: 2024-12-16T20:52:01.316Z (20 days ago)
- Topics: asp-net-core, mongodb, react-native
- Language: C#
- Homepage:
- Size: 772 KB
- Stars: 2
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ASP.NET Core 6.0 + React Native + MongoDB
This is an example implementation of an ASP.NET Core 6.0 webserver with React Native with Expo serving as the frontend and MongoDB as the database.
The `ASP.NET_ReactNative/` directory contains the project, and `Tests/` includes tests for the project.
#### Install required dependencies:
```
dotnet restore
```#### Run webserver:
```
dotnet run
```#### React Native Frontend
React Native project is in `ClientApp/`
I'm using Google Maps API to render the map, you will need to create your own API key and add it `.env` in `ClientApp/`.
#### .env:
```
GOOGLE_MAPS_API_KEY=[Your API Key here]
```##### Install Dependencies:
```
npm install
```##### Start Server:
```
npm start
```