Skip to content

Commit 736a344

Browse files
committed
Misc
1 parent b7e5b03 commit 736a344

6 files changed

Lines changed: 94 additions & 20 deletions

File tree

.github/workflows/changelog.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Changelog
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
release:
8+
types: [created]
9+
10+
jobs:
11+
generate_changelog:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Generate Changelog
16+
uses: heinrichreimer/github-changelog-generator-action@v2.2.2
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
output: CHANGELOG.md
20+
- name: Commit Changelog
21+
run: |
22+
git config --global user.name 'github-actions[bot]'
23+
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
24+
git add CHANGELOG.md
25+
git commit -m 'chore: update changelog [skip ci]' || echo 'No changes to commit'
26+
git push

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# 📄 Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
Auto-updated via GitHub Actions.
6+
7+
## [0.1.0] - 2025-04-28
8+
### Added
9+
- Initial project structure
10+
- README.md with full documentation
11+
- CONTRIBUTING.md and LICENSE
12+
- Auto-updating changelog system

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing
2+
3+
Contributions are welcome! Please read the guidelines.

LICENSE

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,3 @@
11
MIT License
22

3-
Copyright (c) 2025 Varna Sri Raman
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
3+
Copyright (c) 2025

README.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,39 @@
1+
2+
<p align="center">
3+
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green.svg" alt="License"></a>
4+
<a href="CHANGELOG.md"><img src="https://img.shields.io/badge/changelog-updating-blue.svg" alt="Changelog"></a>
5+
<a href="https://buymeacoffee.com/varnasra"><img src="https://img.shields.io/badge/Support-BuyMeACoffee-yellow.svg" alt="Support Me"></a>
6+
</p>
7+
8+
19
# ViewStack
2-
Frontend UI for visualizing and interacting with OpenStacks data.
10+
11+
> Frontend UI for visualizing and interacting with OpenStacks data.
12+
13+
---
14+
15+
![ViewStack Banner Placeholder](https://via.placeholder.com/1200x300.png?text=ViewStack+-+OpenStacks+Frontend+Layer)
16+
17+
---
18+
19+
# 📚 Table of Contents
20+
- [About](#about)
21+
- [Architecture](#architecture)
22+
- [Folder Structure](#folder-structure)
23+
- [Installation & Usage](#installation--usage)
24+
- [Roadmap](#roadmap)
25+
- [Contributing](#contributing)
26+
- [License](#license)
27+
- [Support Me](#support-me)
28+
- [Citation](#citation)
29+
- [Contact](#contact)
30+
- [Changelog](#changelog)
31+
32+
---
33+
34+
35+
---
36+
37+
<p align="center">
38+
Made with ❤️ by <b>Varna Sri Raman</b> • <a href="https://buymeacoffee.com/varnasra">Support my work</a> • <a href="mailto:varna.sr@gmail.com">Contact</a>
39+
</p>

ROADMAP.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# 🛣️ Roadmap
2+
3+
This document outlines the planned future development for this stack.
4+
5+
## Planned Enhancements
6+
- Expand and optimize schemas/queries/APIs/UI components.
7+
- Integrate advanced features like authentication, search, dynamic dashboards.
8+
- Improve documentation with visual diagrams and interactive tutorials.
9+
- Expand multilingual and multi-database support where relevant.
10+
- Integrate broader OpenStacks ecosystem capabilities.
11+
12+
---
13+
14+
*This roadmap evolves as the project grows.*

0 commit comments

Comments
 (0)