Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prashantrahul141/dotnet-t3-blogs

Front end of a blogging back using ASP .NET 8 in T3 Stack.
https://github.com/prashantrahul141/dotnet-t3-blogs

nextjs shadcn-ui t3-stack

Last synced: 3 days ago
JSON representation

Front end of a blogging back using ASP .NET 8 in T3 Stack.

Awesome Lists containing this project

README

        

## Front end of a blogging back using ASP .NET 8 in T3 Stack.

This is a frontend for a blogging app web apis I made in ASP .NET 8:
https://github.com/prashantrahul141/BlogWebApiDotNet

### Building

This project uses pnpm make sure you have it installed. [Installation instructions](https://pnpm.io/installation)

Keep these in a `.env` file in the root directory.

```sh
# base endpoint url to the server.
# for server see here https://github.com/prashantrahul141/blogwebapidotnet
next_public_base_api_url="http://localhost:5248"
```

Install all packages

```sh
$ pnpm install
```

Build and start production server

```sh
$ pnpm build && pnpm start
```