Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bytebase/dbcost
The simple pricing calculator and comparison tool for the cloud databases.
https://github.com/bytebase/dbcost
aws aws-rds billing cloud cloudsql database finops gcp gcp-cloudsql instance mysql postgres postgresql pricing pricing-table rds
Last synced: about 21 hours ago
JSON representation
The simple pricing calculator and comparison tool for the cloud databases.
- Host: GitHub
- URL: https://github.com/bytebase/dbcost
- Owner: bytebase
- License: mit
- Created: 2022-03-11T09:04:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-30T01:32:18.000Z (9 days ago)
- Last Synced: 2024-10-30T03:58:03.776Z (9 days ago)
- Topics: aws, aws-rds, billing, cloud, cloudsql, database, finops, gcp, gcp-cloudsql, instance, mysql, postgres, postgresql, pricing, pricing-table, rds
- Language: TypeScript
- Homepage: https://dbcost.com
- Size: 4.59 MB
- Stars: 68
- Watchers: 9
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# DB Cost
[dbcost.com](https://dbcost.com) the simple pricing calculator and comparison tool for the Cloud databases.
## Roadmap
- [ ] Supported Cloud Vendors
- [x] AWS RDS
- [x] GCP Cloud SQL
- [ ] Azure
- [ ] AliCloud
- [ ] Cost Table
- [x] Basic Table
- [x] Data Refinement Menu
- [ ] Table for checked Instance
- [ ] RAM / CPU wise calculator special for GCP
- [ ] Cost Charts
- [x] Compare the difference in monthly price between different offers ( Line Chart )
- [ ] Compare the difference in total price between different offers ( Stacked Columns Chart )
- [ ] Comparison page
- [ ] SEO with **Next**
- [x] Semantic URLs
- [x] Related instances/regions references
- [ ] Maintaining Relevant Services
- [ ] Incorporate Terraform
- [ ] Database Service Life Cycle Management
- [ ] Database Benchmark
- [ ] Benchmark Test Scheduling / Result Storage
- [ ] Benchmark Dashboard## Background
The market lacks a tool for developers to compare different database products before making a final decision. A site, where all available cloud providers' database performance and cost can be demonstrated, is desired.
## Tech Stack (at least this is expected)
### Used
- **Golang**.
- **Next.js** with **React 18**.
- **Ant Design** as component library.
- **Nivo** for chart visualization.
- **Cron** task by **GitHub Actions**.### Requirement
- [Go v1.7](https://go.dev/dl/)
- [pnpm](https://pnpm.io) for package management## How to start?
This project is under development and is very unstable. The way to start this project may improve as process goes on.
### Fetching Data
We maintain our data through a GitHub Actions CronJob. It runs every day to make sure the pricing data is up to date. The data on dbcost.com is provided at [here](https://github.com/bytebase/dbcost/blob/main/data/dbInstance.json).
### Installing Frontend Dependencies
```
cd ./frontend && pnpm install
```### Starting the Frontend
```
pnpm dev
```Now dbcost is available at [localhost:3000](localhost:3000)
### Seeding data manually
If you would like to fetch the latest data manually, please apply for a [GCP API KEY](https://cloud.google.com/apigee/docs/api-platform/security/api-keys) with access to the [Cloud Billing API](https://cloud.google.com/billing/docs/reference/rest) first. For AWS, the API is open to everyone, you do not need a API KEY to access relevant resource.
First set environment variable:
```
export API_KEY_GCP={YOUR_API_KEY}
```Then run the following command:
```
go run ./seed/main/go
```