Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/prashantrahul141/dotnet-t3-blogs
- Owner: prashantrahul141
- License: mit
- Created: 2024-05-08T05:32:13.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-16T18:00:22.000Z (7 months ago)
- Last Synced: 2024-11-02T03:23:49.039Z (about 2 months ago)
- Topics: nextjs, shadcn-ui, t3-stack
- Language: TypeScript
- Homepage:
- Size: 205 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```