Welcome to Codingly, a blog built for developers by developers. This repository houses the source code for the blog, which is created using Astro, a modern static site generator.
Codingly is my personal blog, sharing my coding experiences, problem-solving insights, and software development solutions. It aims to evolve into a community blog with contributions from various authors, welcoming developers of all levels to participate, learn, and exchange ideas.
- Dynamically Generated Pages: Discover a seamless browsing experience with dynamically generated posts, categories, and author pages, ensuring fresh and up-to-date content at your fingertips.
- Responsive Design: Enjoy a visually appealing and user-friendly blog, optimized for all devices, providing an enjoyable reading experience on desktops, tablets, and mobiles alike.
- Contact Form: Get in touch with the blog author via a contact form, allowing you to send messages directly from the blog.
We welcome contributions from the developer community to enrich the blog with fresh perspectives and valuable content. If you'd like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch for your changes.
- Make your enhancements or additions.
- Submit a pull request, describing the changes you've made.
To run the blog locally, you'll need Node.js and npm installed on your system. Follow these steps to get started:
- Clone this repository to your local machine.
- Install the project dependencies with
npm install
. - Start the development server with
npm run dev.
- Open your browser and visit http://localhost:3000 to see the blog in action.
Inside of your Astro project, you'll find the following directories and files:
/
├── public/
│ └── ...
├── src/
│ ├── components/
│ │ └── ...
│ ├── layouts/
│ │ └── ...
│ └── pages/
│ └── ...
└── package.json
Astro looks for .astro
or .md
files in the src/pages/
directory. Each page is exposed as a route based on its file name.
Any static assets, like images, can be placed in the public/
directory. These files will be copied into the final build.
If you come across any bugs, have suggestions for improvements, or want to request new features, please submit an issue in the GitHub repository. Your feedback is highly appreciated!
This project is licensed under the General Public License v3.0. See the LICENSE file for details.