Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lixinyang123/corehome
A blog system based on .NET 🏠
https://github.com/lixinyang123/corehome
aspnet blog-system dotnet
Last synced: about 2 months ago
JSON representation
A blog system based on .NET 🏠
- Host: GitHub
- URL: https://github.com/lixinyang123/corehome
- Owner: lixinyang123
- License: mit
- Created: 2020-02-01T15:22:03.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-05-19T20:29:19.000Z (9 months ago)
- Last Synced: 2024-05-19T21:26:33.747Z (9 months ago)
- Topics: aspnet, blog-system, dotnet
- Language: C#
- Homepage: https://www.lllxy.net
- Size: 43.1 MB
- Stars: 60
- Watchers: 2
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CoreHome
![build](https://github.com/lixinyang123/CoreHome/workflows/build/badge.svg?branch=main)
An open source blog system based on [.NET](https://dotnet.microsoft.com/) and [Alibaba Cloud](https://www.aliyun.com/).
Current personal [website](https://www.lllxy.net),
### Features
- Personal information management.
- Homepage project management.
- Theme management (background, light and dark themes, BGM).
- Blog management (classification, tagging, archiving, comments).
- Feedback alerts.
- Network status detection.### Screenshot
### Build from source#### Install pre-requisites
- Visual Studio 2022 / Visual Studio Code
- .NET 8.0 SDK
- Libman (VS Extension)
- Bundler & Minifier (VS Extension)
- Mysql
- Docker(WSL2 is recommended)> If you use Visual Studio (Not Visual Studio Code), you don't need to install Libman CLI and Entity Framework CLI.
Install Libman CLI:
```shell
dotnet tool install -g Microsoft.Web.LibraryManager.Cli
```Install Entity Framework Core CLI
```shell
dotnet tool install -g dotnet-ef
```Clone source code
```shell
git clone https://github.com/lixinyang123/CoreHome.git
```Configuration
You can refer to [this](https://www.lllxy.net/Blog/Detail/b73acc42-ec42-4151-b108-a680bd1e0c87) blog to configure.
- CoreHome
- CoreHome.HomePage
- appsettings.json
- wwwroot/SiteMap.txt
- wwwroot/favicon.ico
- CoreHome.Admin
- appsettings.json
- wwwroot/favicon.ico
- CoreHome.ReverseProxy
- appsettings.json> The content of appsettings.json in `CoreHome.HomePage` and `CoreHome.Admin` is exactly the same, just copy and paste.
#### Configure database:
Both CoreHome.HomePage and CoreHome.Admin's `application.json` files should be configured.
```
"CoreHome": "server=[host];user id=[user];password=[password];database=corehome"
```
#### Dependencies- Visual Studio
- Backend:Click Restore Nuget Packages in Solution Explorer.
- CoreHome.Infrastructure
- CoreHome.Data
- CoreHome.HomePage
- CoreHome.Admin
- CoreHome.ReverseProxy
- Frontend:Click Restore Client Libraries in Solution Explorer.
- CoreHome.HomePage/libman.json
- CoreHome.Admin/libman.json- Visual Studio Code or CLI
- Backend:Execute `dotnet restore` in the following directory.
- CoreHome.HomePage
- CoreHome.Admin
- Frontend:Execute `libman restore` in the following directory.
- CoreHome.HomePage
- CoreHome.Admin#### Migrate Database
- Visual Studio
Tools \-\> Nuget Package Manager \-\> Package Manager Console
```shell
Update-Database
```- Visual Studio Code or CLI
Execute the following commands in the `CoreHome.HomePage` and `CoreHome.Admin` directory.
```shell
dotnet-ef database update -p ..\CoreHome.Data
```#### Startup
- Visual Studio or Visual Studio Code
Click `Startup` in Solution Explorer or `Ctrl+F5`.
- CLI
Execute the following commands in the `CoreHome.HomePage` and `CoreHome.Admin` directory.
```shell
dotnet run
```#### Build Dockerfile
- Visual Studio
Click `Build Dockerfile` in Solution Explorer.
- Visual Studio Code or CLI
Execute the following command in the project root directory.
```shell
docker build --file ./CoreHome.Admin/Dockerfile --tag lixinyang/corehome-admin:latest .
docker build --file ./CoreHome.HomePage/Dockerfile --tag lixinyang/corehome-homepage:latest .
docker build --file ./CoreHome.ReverseProxy/Dockerfile --tag lixinyang/corehome-reverseproxy:latest .
```### Deploy
You can use `DockerHome` to deploy CoreHome, or you can deploy it manually.
[![ReadMe Card](https://github-readme-stats.vercel.app/api/pin/?username=lixinyang123&repo=DockerHome)](https://github.com/lixinyang123/DockerHome)
> You can refer to [this](https://www.lllxy.net/Blog/Detail/b73acc42-ec42-4151-b108-a680bd1e0c87) blog to use DockerHome.