https://github.com/avicted/social-platform-2000-backend
Reddit style forum backend, dotnet core 6.0 rest api for social-platform-2000. Frontend source: https://github.com/Avicted/social-platform-2000
https://github.com/avicted/social-platform-2000-backend
Last synced: 4 months ago
JSON representation
Reddit style forum backend, dotnet core 6.0 rest api for social-platform-2000. Frontend source: https://github.com/Avicted/social-platform-2000
- Host: GitHub
- URL: https://github.com/avicted/social-platform-2000-backend
- Owner: Avicted
- License: gpl-3.0
- Created: 2022-04-02T14:13:51.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-03T08:16:55.000Z (almost 2 years ago)
- Last Synced: 2025-07-28T05:33:06.172Z (11 months ago)
- Language: C#
- Homepage:
- Size: 553 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Forum backend
VSCode development docker container has been setup.
Run inside the remote development container:
```bash
./develop.sh
```
Create a new database migration:
```bash
dotnet ef migrations add "" \
--project sp2000.Infrastructure \
--startup-project sp2000.API \
--output-dir Persistance/Migrations \
--context ApplicationDbContext
```
Update the database with the migration(s):
```bash
dotnet-ef database update \
--project sp2000.API/sp2000.API.csproj \
--context ApplicationDbContext
```
# Architecture

# Database Diagram

# Common problems
Red squiggly lines everywhere, VSCode -> restart omnisharp, the language server.