Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renanmedina/i-invest
Repositorio do projeto de analisador de carteria de investimento pessoal em go (Estudo de GoLang)
https://github.com/renanmedina/i-invest
Last synced: 28 days ago
JSON representation
Repositorio do projeto de analisador de carteria de investimento pessoal em go (Estudo de GoLang)
- Host: GitHub
- URL: https://github.com/renanmedina/i-invest
- Owner: renanmedina
- Created: 2023-04-05T02:52:29.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T20:59:03.000Z (5 months ago)
- Last Synced: 2024-10-23T12:55:39.384Z (3 months ago)
- Language: TypeScript
- Size: 9.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## I-Invest
### Backend
#### Dependencies
- go 1.22 (Use gvm to make it easir changing versions on the fly)
- air (development only)
- Gin framework
- Postgres 16
- Metabase (For reports)
- Migrate CLI Tool latest (github.com/golang-migrate/migrate)#### Instalation
```bash
cd backend && go mod tidy
``````bash
cd infrastructure && ./up-infra.sh
```#### Migrations
Install the migrate tool manually, it's not setup in go.mod since we made the decision to separate de migration process from the binary itself e execute as migrations```bash
go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@latest
cd backend && ./migrate_db.sh up
```