# DotNetClub **Repository Path**: fengzijun/DotNetClub ## Basic Information - **Project Name**: DotNetClub - **Description**: A tiny club written in Asp.Net Core - **Primary Language**: C# - **License**: Artistic-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-07-01 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DotNetClub A Tiny Club Written in Asp.Net Core How to Build and Run: * Clone the repository * Restore the dependencies ``` dotnet restore ``` * Go to DotNetClub.Web directory ``` cd src\DotNetClub.Web ``` * Edit database connection string by SecretManagerTools ``` dotnet user-secrets set ConnectionString YourConnectionString ``` * Install Database ``` dotnet ef database update ``` * Install client libraries ``` bower install ``` * Run the project ``` dotnet run ```