Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akabaytar/tech-people
TechPeople is a tech blog featuring the latest trends, tools, and insights for developers and tech enthusiasts. Built with Astro and TypeScript, it offers fast, easy-to-read articles on everything from coding tips to hardware reviews.
https://github.com/akabaytar/tech-people
astro markdown tailwindcss typescript
Last synced: about 1 month ago
JSON representation
TechPeople is a tech blog featuring the latest trends, tools, and insights for developers and tech enthusiasts. Built with Astro and TypeScript, it offers fast, easy-to-read articles on everything from coding tips to hardware reviews.
- Host: GitHub
- URL: https://github.com/akabaytar/tech-people
- Owner: akaBaytar
- License: mit
- Created: 2024-09-18T11:02:49.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-09-18T11:38:25.000Z (about 2 months ago)
- Last Synced: 2024-10-12T22:22:33.384Z (about 1 month ago)
- Topics: astro, markdown, tailwindcss, typescript
- Language: Astro
- Homepage: https://burakbilgili-techpeople.vercel.app
- Size: 7.02 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# TechPeople
> TechPeople is a tech blog featuring the latest trends, tools, and insights for developers and tech enthusiasts. Built with Astro and TypeScript, it offers fast, easy-to-read articles on everything from coding tips to hardware reviews.
## Table of Contents
- [Live Demo](#live-demo)
- [Screen](#screen)
- [Technologies Used](#technologies-used)
- [Usage](#usage)
- [Commands](#commands)
- [Creating Posts](#creating-posts)
- [License](#license)## Live Demo
- You can access the live demo via [Vercel](https://burakbilgili-techpeople.vercel.app).
## Screen
[](https://burakbilgili-techpeople.vercel.app)
## Technologies Used
**TechPeople uses the following technologies:**
- Astro
- TypeScript
- Tailwind
- Markdown## Usage
Install dependencies
```sh
npm install
```## Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |## Creating Posts
Create a new `.md` file in the `src/content/articles` folder. Add the front matter and content.
Here is an example of front matter:
```md
---
title: 'The best laptops for developers in 2024'
desc: 'Lorem ipsum...'
pubDate: 2024-01-31
author: 'John Doe'
image: 'blog1.png'
tags: ['tech', 'hardware']
slug: the-best-laptops-for-developers-in-2024
---
```Upload the image to `/public`.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE.md) file for details