An open API service indexing awesome lists of open source software.

https://github.com/opencodechicago/hacktoberfest-2025-infra

CoreX infrastructure — Terraform modules, GitHub Actions workflows, AWS provisioning (S3, CloudFront, Lambda, ECR), observability, and secrets management. For DevOps, Cloud Engineering, and Security contributors during Hacktoberfest 2025.
https://github.com/opencodechicago/hacktoberfest-2025-infra

aws ci-cd cloud community-project devops grafana hacktoberfest hacktoberfest2025 iac infrastructure jira monitoring open-source opencodechicago security terraform

Last synced: 3 months ago
JSON representation

CoreX infrastructure — Terraform modules, GitHub Actions workflows, AWS provisioning (S3, CloudFront, Lambda, ECR), observability, and secrets management. For DevOps, Cloud Engineering, and Security contributors during Hacktoberfest 2025.

Awesome Lists containing this project

README

          

# Hacktoberfest 2025 – Infrastructure

[![GitHub last commit](https://img.shields.io/github/last-commit/OpenCodeChicago/hacktoberfest-2025-infra)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/commits/main)
[![License: MIT](https://img.shields.io/github/license/OpenCodeChicago/hacktoberfest-2025-infra)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/blob/main/LICENSE)
[![CI](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/actions/workflows/ci.yml/badge.svg?style=for-the-badge)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/actions/workflows/ci.yml)
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/OpenCodeChicago/hacktoberfest-2025-infra/badge)](https://securityscorecards.dev/viewer/?uri=github.com/OpenCodeChicago/hacktoberfest-2025-infra)
[![Open Issues](https://img.shields.io/github/issues/OpenCodeChicago/hacktoberfest-2025-infra)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/issues)
[![Pull Requests](https://img.shields.io/github/issues-pr/OpenCodeChicago/hacktoberfest-2025-infra)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/pulls)
[![Contributors](https://img.shields.io/github/contributors/OpenCodeChicago/hacktoberfest-2025-infra)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/graphs/contributors)
[![GitHub stars](https://img.shields.io/github/stars/OpenCodeChicago/hacktoberfest-2025-infra?style=for-the-badge)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/stargazers)
[![GitHub forks](https://img.shields.io/github/forks/OpenCodeChicago/hacktoberfest-2025-infra?style=for-the-badge)](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/network/members)

---

## Welcome Hacktoberfest Contributors!

This repo is part of [Open Code Chicago](https://opencodechicago.org)’s Hacktoberfest 2025 initiative.
Whether it’s your **first pull request** or your **50th**, you are welcome here!

Contribute to real-world open source code, learn frontend development, and collaborate with a global community.

### ⭐ Support the Project!
If you like this project, please consider giving it a ⭐ on GitHub!
More stars help us reach a wider audience, attract new contributors, and make your contributions even more visible and valuable for your portfolio or employer.
Thank you for helping our open source community grow!

![Hacktoberfest 2025 - Open Code Chicago](./docs/assets/hacktoberfest2025.png)

---

## Table of Contents
- [Design](#design)
- [Description](#description)
- [Who is this for?](#who-is-this-for)
- [Tech Stack](#tech-stack)
- [Quick Start](#quick-start)
- [Features](#features)
- [Project Structure](#project-structure)
- [Contributing](#contributing)
- [Hacktoberfest Contribution Guide](#hacktoberfest-contribution-guide)
- [Documentation](#documentation)
- [Contributors](#contributors)
- [Security](#security)
- [License](#license)
- [Feedback](#feedback)
- [Support](#support)
- [Connect with us](#connect-with-us)

---

## Description

...

---

## Who is this for?

...

---

## Tech Stack

...

---

## Quick Start

See the [Usage Guide](docs/usage.md) for detailed setup.

```bash
# Clone the repo
git clone https://github.com/OpenCodeChicago/hacktoberfest-2025-infra.git
cd hacktoberfest-2025-infra
```

```bash
# Install dependencies
npm install
```

---

## Features

- Developer-friendly setup with **React + Vite**
- Utility-first styling with **Tailwind CSS**
- Preconfigured **linting & formatting** (ESLint + Prettier)
- Automated checks via **GitHub Actions CI**
- Community-driven with **issues & PR templates**

---

## Project Structure

```bash
hacktoberfest-2025-frontend/ # Main project root
├── .github/ # GitHub configuration
│ ├── ISSUE_TEMPLATE/ # Predefined issue templates
│ │ ├── bug_report.md
│ │ └── feature_request.md
│ ├── workflow/ # GitHub Actions workflows
│ │ └── ci.yml
│ ├── CODEOWNERS # Defines code reviewers
│ ├── dependabot.yml # Automated dependency updates
│ └── PULL_REQUEST_TEMPLATE.md # Standard PR template

├── docs/ # Project documentation
│ ├── images/ # Images and assets for docs
│ ├── faq.md
│ └── usage.md

├── src/ # Application source code

├── .all-contributorsrc # Config for all-contributors bot
├── .gitignore # Ignored files
├── .prettierrc # Code formatting config
├── CODE_OF_CONDUCT.md # Community standards
├── CONTRIBUTING.md # Contribution guidelines
├── LICENSE # License file
├── README.md # Project overview
├── SECURITY.md # Security policy
```

---

## Contributing

We welcome contributions from everyone!
Please see our [Contributing Guidelines](CONTRIBUTING.md) for details on how to get started.

---

## Hacktoberfest Contribution Guide

1. Fork this repository
2. Check our [Project Board](https://github.com/orgs/OpenCodeChicago/projects/2)
- Look for an issue you’d like to work on
- Comment on the issue to let others know you’re taking it
- Maintainers may assign you to it (to avoid duplicates)
3. Create a new branch:
```bash
git checkout -b my-new-feature
```
4. Make your changes (small, clear commits)
5. Run `npm run lint` before pushing
6. Push your branch and open a Pull Request
- All PRs are automatically checked for linting in CI
- Tip: Start with [Good First Issues](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/labels/good%20first%20issue)

---

## Documentation

- [Usage Guide](docs/usage.md)
- [FAQ](docs/faq.md)
- [Contributing Guidelines](CONTRIBUTING.md)
- [Pull Request Template](.github/PULL_REQUEST_TEMPLATE.md)
- [Code Owners](.github/CODEOWNERS)
- [Issue Templates](.github/ISSUE_TEMPLATE/)

---

## Contributors

Thanks goes to these wonderful people:



Alex Smagin
Alex Smagin

💻 📖 🚧 📆

This project follows the [all-contributors](https://allcontributors.org) specification.

> Want to be listed here? [See how to add yourself!](./CONTRIBUTING.md#get-recognized-with-the-all-contributors-bot)

Contributions of any kind welcome!

---

## Security

This repository has the following security features enabled:

- **Dependency Review Action** – warns/block PRs introducing vulnerable or malicious packages
- **OpenSSF Scorecard** – weekly scans for open-source best practices and supply-chain risks
- **Dependabot** – automated dependency updates

For details, see our [Security Policy](SECURITY.md).

---

## License

This project is licensed under the [MIT License](LICENSE).

---

## Feedback

We welcome feedback and suggestions to improve the template’s functionality and usability.
Feel free to [open an issue](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/issues) or [start a discussion](https://github.com/OpenCodeChicago/hacktoberfest-2025-infra/discussions).

---

## Support

📧 Contact: [info@opencodechicago.org](mailto:info@opencodechicago.org)

---

## Languages and Tools

---

## Connect with us



YouTube


Discord


linkedin


Facebook