misopurr / DevTweet

An open-source developer-focused web application for sharing thoughts and knowledge within the developer community

Home Page:https://devtweet.is-an.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DevTweet - Unleash Your Developer Voice

‼ About

DevTweet is an exciting open-source project designed exclusively for developers. It serves as a microblogging platform, allowing developers to post their thoughts and updates through contributions. It's a space where developers can freely share their ideas and connect with the community.

❔ What to Post

You can post anything related to the developer community, such as code snippets, best practices, project showcases, tech news, opinions, learning resources, and more, including introducing yourself or showcasing your GitHub profile.

🤔 How to Contribute

Thank you for your interest in contributing to our open-source project!

1. Forking the Repo

A fork is a local copy of the repository that is on your GitHub account, and you can make changes on that repository.

2. Creating a Post

You can create a post super easily by making a new file in the src/content/posts directory.

For example, you could create the file hello.md. Now, you need to fill in the frontmatter of the post. This stores basic data about the post.

You can also supply image and slug to the frontmatter.

---
layout: ../../layouts/PostLayout.astro # Always use this layout, it's so the post gets properly styled
title: the title of the post
excerpt: a short description about the post
createdAt: the date
author: your name
---

**This is the content of the post.**

3. Adding an Author

Go to src/util/authors.ts file. just extend the array by adding your github username.

// Before:
export const AUTHORS = ["oyepriyansh"] as const;

// After:
export const AUTHORS = ["oyepriyansh", "YOUR_GITHUB_USERNAME"] as const;

4. Author Image

You can add an image for yourself by uploading an image to the /public/authors directory. Please make sure that is it spelt the exact same as your github username in the src/util/authors.ts file.

Note: Capitalization does not matter for the image file, make it all lower-case.

5. Pull Request

  • You can now commit changes to tha t repository. Once you've made the changes you want, create a pull request on the main repository.
  • Once you have submitted pull request, it will be reviewed and merged as soon as possible

👨‍💻 Contributing

Contributions make the open source community such an amazing place to learn, inspire, and create.
Any contributions you make are truly appreciated!

🆘 Need Help?

Join our discord server for any kind of help.

Discord Server

🙏 Support

Thank you for contributing to our open-source project! We appreciate your support 🚀
Don't forget to leave a star ⭐

About

An open-source developer-focused web application for sharing thoughts and knowledge within the developer community

https://devtweet.is-an.app

License:MIT License


Languages

Language:Astro 59.4%Language:MDX 14.0%Language:TypeScript 13.2%Language:CSS 10.3%Language:JavaScript 3.2%