Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/janina280/bloggie
Bloggie is a blogging platform developed with ASP.NET MVC and styled using Bootstrap 5. It allows users to manage blog content, including creating, editing, and deleting posts. One of the key features is the ability to edit and manage tags associated with each post. This makes it easier to categorize and organize content for better user experience.
https://github.com/janina280/bloggie
asp-net-mvc boostrap5 sql-server
Last synced: about 1 month ago
JSON representation
Bloggie is a blogging platform developed with ASP.NET MVC and styled using Bootstrap 5. It allows users to manage blog content, including creating, editing, and deleting posts. One of the key features is the ability to edit and manage tags associated with each post. This makes it easier to categorize and organize content for better user experience.
- Host: GitHub
- URL: https://github.com/janina280/bloggie
- Owner: janina280
- Created: 2024-06-06T10:41:17.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T19:27:06.000Z (4 months ago)
- Last Synced: 2024-11-10T14:20:20.093Z (3 months ago)
- Topics: asp-net-mvc, boostrap5, sql-server
- Language: C#
- Homepage:
- Size: 979 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bloggie
A web application built using ASP.NET MVC and Bootstrap 5. The project includes functionality for managing blog posts and editing tags.
### Description
Bloggie is a blogging platform developed with ASP.NET MVC and styled using Bootstrap 5. It allows users to manage blog content, including creating, editing, and deleting posts. One of the key features is the ability to edit and manage tags associated with each post. This makes it easier to categorize and organize content for better user experience.### Getting Started
* Dependencies
- .NET 6.0 SDK or higher
- Visual Studio 2022 (or any IDE that supports .NET development)
- SQL Server (for database storage)
- Bootstrap 5 (for front-end styling)
- C#, HTML, CSS, JavaScript (core technologies used in the application)### Installing
Clone the Repository:
```
git clone https://github.com/janina280/Bloggie.git
cd Bloggie
```Open the project in Visual Studio:
* Launch Visual Studio.
* Open the solution file Bloggie.sln.Configure the database:
Set up your SQL Server connection string in appsettings.json:```
"ConnectionStrings": {
"DefaultConnection": "Server=your_server_name;Database=BloggieDB;Trusted_Connection=True;"
}
```Run the migrations to create the database schema:
```
Update-Database
```### Build the project:
Restore NuGet packages and build the solution in Visual Studio.
Executing program
Run the web application from Visual Studio by pressing F5 or selecting "Start Debugging".
Open your browser and navigate to the local URL usually http://localhost:5000 or http://localhost:5001.
You will now be able to:
* Create, edit, and delete blog posts.
* Edit and manage tags associated with posts.