Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmcampos/rmcampos.github.io
[Resume] This repository contains my full resume, skills, work history and more.
https://github.com/rmcampos/rmcampos.github.io
css html5 resume resume-template resume-website
Last synced: 4 days ago
JSON representation
[Resume] This repository contains my full resume, skills, work history and more.
- Host: GitHub
- URL: https://github.com/rmcampos/rmcampos.github.io
- Owner: RMCampos
- Created: 2022-10-23T17:52:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-07T00:31:41.000Z (5 months ago)
- Last Synced: 2024-10-11T12:54:07.100Z (27 days ago)
- Topics: css, html5, resume, resume-template, resume-website
- Language: HTML
- Homepage: https://rmcampos.github.io/
- Size: 11.3 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SPAR Postgres Database Documentation
- SPAR Github Repo: https://github.com/bcgov/nr-spar
- SPAR Schema Spy Live: add here## How to generate a new version
1. Download Schema Spy: https://github.com/schemaspy/schemaspy/releases
2. Download Postgre JDBC jar Driver: https://jdbc.postgresql.org/download/
3. Start spar on docker
4. Get the database container IP: docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' database
5. Run the magic command:
java -jar ./schemaspy-6.2.4.jar \
-t pgsql11 \
-dp ./postgresql-42.7.3.jar \
-db postgres \
-host 172.20.0.2 \
-port 5432 \
-u postgres \
-p default \
-s spar \
-o ./outputHere's how to get a running Dcoker container IP address:
```bash
docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' database
```