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.
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.
Thank you for your interest in contributing to our open-source project!
A fork is a local copy of the repository that is on your GitHub account, and you can make changes on that repository.
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.**
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;
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.
- 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
Contributions make the open source community such an amazing place to learn, inspire, and create.
Any contributions you make are truly appreciated!
Join our discord server for any kind of help.
Thank you for contributing to our open-source project! We appreciate your support 🚀
Don't forget to leave a star ⭐