All Projects → canyener → social-me-die

canyener / social-me-die

Licence: MIT license
A social media experiment with .net core, ef core, react and mobx.

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to social-me-die

Android tmdb clean architecture
Showcase of clean architecture concepts along with Continuous Integration and Development for modular Android applications. Includes test suits (functional and unit tests) along with code coverage.
Stars: ✭ 63 (+293.75%)
Mutual labels:  sqlite, clean-architecture
fastapi-pydiator
Python clean architecture and usecase implementation with fastapi and pydiator-core
Stars: ✭ 58 (+262.5%)
Mutual labels:  clean-architecture, mediator-pattern
OnionArchitecture
The onion architecture, introduced by Jeffrey Palermo, overcomes the issues of the layered architecture with great ease. With Onion Architecture, the game-changer is that the Domain Layer (Entities and Validation Rules that are common to the business case ) is at the Core of the Entire Application. This means higher flexibility and lesser coupli…
Stars: ✭ 314 (+1862.5%)
Mutual labels:  clean-architecture, cqrs-pattern
CleanArchitecture-Template
This is a solution template for Clean Architecture and CQRS implementation with ASP.NET Core.
Stars: ✭ 60 (+275%)
Mutual labels:  clean-architecture, ef-core
Polysemycleanarchitecture
Showcasing how the Polysemy library can be used to implement a REST application conforming to the guidelines of the Clean Architecture model.
Stars: ✭ 106 (+562.5%)
Mutual labels:  sqlite, clean-architecture
Modernarchitectureshop
The Microservices Online Shop is an application with a modern software architecture that is cleanly designed and based on.NET lightweight technologies. The shop has two build variations. The first variant is the classic Microservices Architectural Style. The second one is with Dapr. Dapr has a comprehensive infrastructure for building highly decoupled Microservices; for this reason, I am using Dapr to achieve the noble goal of building a highly scalable application with clean architecture and clean code.
Stars: ✭ 154 (+862.5%)
Mutual labels:  sqlite, clean-architecture
CQRSAndMediator-Microservice
A microservice architecture template which implements the CQRS and Mediator patterns
Stars: ✭ 86 (+437.5%)
Mutual labels:  mediator-pattern, cqrs-pattern
nim-gatabase
Connection-Pooling Compile-Time ORM for Nim
Stars: ✭ 103 (+543.75%)
Mutual labels:  sqlite
SqlCipher4Unity3D
💾 SqlCipher made easy for Unity3d
Stars: ✭ 119 (+643.75%)
Mutual labels:  sqlite
flutter clean architecture
A flutter clean architecture series, the way we build clean apps.
Stars: ✭ 225 (+1306.25%)
Mutual labels:  clean-architecture
go-sqlite
Low-level Go interface to SQLite 3
Stars: ✭ 268 (+1575%)
Mutual labels:  sqlite
UseCases
This a library that offers a generic implementation of the data layers from the clean architecture by Uncle bob.
Stars: ✭ 23 (+43.75%)
Mutual labels:  clean-architecture
erdiagram
Entity-Relationship diagram code generator library
Stars: ✭ 28 (+75%)
Mutual labels:  sqlite
GithubApp-android-architecture
Let's learn a deep look at the Android architecture
Stars: ✭ 16 (+0%)
Mutual labels:  clean-architecture
WWDCast
The unofficial WWDC application for iOS
Stars: ✭ 22 (+37.5%)
Mutual labels:  clean-architecture
nodejs-clean
Clean Architecture with Node.js + Express.js
Stars: ✭ 136 (+750%)
Mutual labels:  clean-architecture
Stars
An android application build with a clean architecture approach and Star wars API
Stars: ✭ 54 (+237.5%)
Mutual labels:  clean-architecture
pojo-observer
A minimalist object observer with React hooks support. Allows you to separate concerns between presentation and interaction logic
Stars: ✭ 91 (+468.75%)
Mutual labels:  clean-architecture
timenaut
Desktop time tracking application for Windows, Mac and Linux that does not invade your privacy
Stars: ✭ 16 (+0%)
Mutual labels:  sqlite
MyS3Chat
MyS3Chat – Complete Open Source Real Time Android Chat Application using Firebase
Stars: ✭ 57 (+256.25%)
Mutual labels:  sqlite

.NET Core Build status Quality Gate Status GitHub release (latest by date) David GitHub contributors GitHub

social-me-die

  • API part of my social media experiment with .net core, entity framework core, react and mobx.

  • .vscode/ folder is commited on purpose. Command and query handler snippets are added and they might be useful for everyone.

  • You can find client app here.

build and run

  • Restore dependencies first, by dotnet restore
  • To build, run dotnet build command on terminal.
  • To run project,
    • run dotnet run -p API/.
    • or navigate to API directory by cd API/ and run dotnet run command.
  • To run in watch mode
    • You must navigate to API directory by cd API/ to be able to use watch mode.
    • run dotnet watch run in API directory.

Ef Core

  • To install globally (which I recommend), type dotnet tool install -g dotnet-ef on your terminal.
  • Simply run dotnet ef to see options and commands you can use.
  • To add migration dotnet ef migrations add <MigrationName> -p <ProjectContainsDataContext>/ -s <StartupProject>/
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].