A project developed in .NET Core, React and MobX
Repository for practicing the material thought in Complete guide to building an app with .Net Core and React course at Udemy by Neil Cummings. Udemy Course Link
The project follows Clean Architecture for .NET Core and uses CQRs and Mediator Pattern
- .NET Core for backend
- React JS from frontend
- MobX for state management
- Entity Framework Core for Database ORM
- SQlite for database
These instructions will give you a copy of the project up and running on your local machine for development and testing purposes.
You need the following tools to be install before getting started:
- Node JS - download here
- .NET Core - download here
- Clone the repository
git clone https://github.com/sohaibsalman/EventHub.git
- Open terminal and move to the API/ directory to start the backend api
cd API/
dotnet restore
dotnet run
- Open terminal and move to the client-app/ directory to start frontend
cd client-app/
npm install
npm start