Coder Social home page Coder Social logo

fxrazor / dbspydev Goto Github PK

View Code? Open in Web Editor NEW

This project forked from open-source-labs/dbspy

0.0 0.0 0.0 112.94 MB

Visualize, modify, and build your database with dbSpy! An open-source data modeling tool to facilitate relational database development.

Home Page: http://db-spy.io/

License: MIT License

JavaScript 23.80% TypeScript 73.45% CSS 2.21% HTML 0.15% Dockerfile 0.02% TSQL 0.37%

dbspydev's Introduction

PRs Welcome Version GitHub Stars MIT License

logo

Visualize, modify, and build your database with dbSpy!

An open-source data modeling tool to facilitate relational database development

New Features with Version 7.0

-UI is now full widescreen with a drop down menu to allow for more workspace. -The Save, Load, and Delete features now take filename, and can save schema, and data. -Deleting certain elements in tables now locates, and also properly delete depedent elements on other tables -Implemented an algorithm to highlight all edges connected to currently selected table -Fixed several Issues where certain Elements would not be deleted from a connected database -Fixed several Issues with show Data terminating react flow -Fixed several Issues with Edges being rendered too many times, and not deleted

Use Cases

  • Connecting to an existing remote PostgreSQL, MySQL, MicroSoftSQL, OracleSQL databases
    • Renders an ER diagram for SCHEMA and DATA of the existing database and provides an interface for users to both modify existing tables and create new tables. A log of changes is stored, and at any point, the user can generate a query containing the changes, such that they are reflected in the existing database.
  • Uploading your database's SQL file
    • Renders an ER diagram for the provided SQL file (db dump) and provides an interface for a user to both modify existing tables and create new tables. Changes are converted into the corresponding queries, which the user can view and execute on their own database outside of dbSpy.
  • Seamlessly visualize relational databases (both SCHEMA and DATA)
    • After connecting database tables with one another, users are able to render the relationship connections of individual tables by clicking on the tables.
  • Creating a database + ER diagram from scratch
    • Provides a canvas for users to create a database by using ER diagrams, thus creating a blueprint for engineering database structures.

Key Features

  1. Database Uploads: Connect to remote SQL database or upload local SQL files

  2. ER Diagram Visuals: Visualize the entity relationship diagram of a database with dynamic handle placement

  3. Table Relationship Visuals Relationships of individual tables are easily identified when clicking on a table

  4. Schema Modification: Toggle between Schema and Data easily with a click of a button

  5. Data/Schema Modification: Easily modify a database's schema or data through a simple UI

  6. Guided Database Building: Create a new database from scratch using entity relationship diagrams to ensure the integrity of the database

  7. Database Undo/Redo: Provides a history of edits for easier backtracking

  8. Query Generator: Query generator generates executable SQL queries

  9. User Sessions: Sign up/Log in securely with either Google/Github OAuth or JWTs/Bcrypt

  10. Save/Load: Store and reload past database sessions through your user accoun

  11. Dark Mode: Visual settings to provide a more comfortable viewing experience in low-light environements

Getting started

You will need your own MySQL database for backend functions.

  • Fork and clone this repo
  • Add a db_schemas folder in server directory
  • Add a .env file to the root directory with the information below:
# production environment variables
USER_DB_URL = <MySQL url for storing user data>
USER_DB_USER = <user string from USER_DB_URL>
USER_DB_PW = <password string from USER_DB_URL>
TOKEN_KEY = <any string>

# testing environment variables
## encoded SSL data required for GitHub Actions
SSL_KEY = <base64 encoded SSL key (see SSL Configuration)>
SSL_CERT = <base64 encoded SSL cert>
## MySQL and Postgres databases to test remote connection functionality
MYSQL_TEST_URL = <MySQL url for a test database>
MYSQL_TEST_USERNAME = <user string from MYSQL_TEST_URL>
MYSQL_TEST_PW = <password string from MYSQL_TEST_URL>
PG_TEST_URL = <PostgreSQL url for a test database>
PG_TEST_USERNAME = <user string from PG_TEST_URL>
PG_TEST_PW = <password string from PG_TEST_URL>
## test user with saved schema to test save/load functionality
TEST_USER_EMAIL = <email string>
TEST_USER_PW = <password string>

GOOGLE_OAUTH_CLIENT_ID = <Google Oauth client id>
GOOGLE_OAUTH_CLIENT_SECRET= <Google Oauth client id>
GOOGLE_OAUTH_REDIRECT_URI = 'http://localhost:8080/display'

GITHUB_OAUTH_CLIENT_ID = <Github Oauth client id>
GITHUB_OAUTH_CLIENT_SECRET= <Github Oauth client id>
GITHUB_OAUTH_REDIRECT_URI = 'http://localhost:8080/display'
  • Run the following below:
$ npm install
  • Execute the following command to populate your mySql database with a users table:
$ npm run seed
  • Run the project in development mode:
$ npm run dev

SSL Configuration

To connect with the SQL database, we must create and configure SSL certificates.

Mac

  1. Install mkcert; you can learn more about mkcert here
npm install -g mkcert
  1. Run the following script
npm run cert

Linux

  1. Check mkcert is up to date (v1.5.1 as of publishing)
mkcert --version
  1. Run the following script
npm run cert:linux

How to Use

Connecting to an existing database

  1. Click on the "Connect Database" button under the Action section on the left side of the page. This will open a sidebar on the right side of the page.
  2. Select the database type from the dropdown.
  3. Input your database URI information OR database connection credentials and click on "Connect".
  4. Once the connection to your database is established, the canvas will render and generate the tables and their relationships.
    • OracleSQL requires the download of the OCI - here

Uploading your database's SQL file

  1. Locate and click on the "Upload SQL File" button under the Action section on the left side of the page. This will open a dialog box for you to select the SQL file you wish to upload.
  2. Once the file uploads, the canvas will render and generate the tables and their relationships.

Starting an ER diagram from scratch

  1. Locate and click on the "Build Database" button under the Action section on the left side of the page. This will render the canvas for you to create your database schema.
  2. Click on "Add Table" to name the first table and start building your database.

Adding column(s) to a SCHEMA table or row(s) to a DATA table

  1. To add a new column/row in a table, click on the add/plus icon on the top right of the table node.

  2. This will render a new column/row in the table in edit mode.

  3. Add in the data you would like in each column/row.

  4. Click on the confirm icon to save the column/row.

  5. The changes made in DATA table will be updated in your database.

  6. Click on the cancel icon to cancel the addition.

Editing an existing row of a DATA table

  1. Click on the edit icon of the specific column that you want to edit.
  2. You can make changes to column fields based on the selections provided.
  3. Click on the save icon to keep your changes.
  4. Click on the cancel icon to cancel your changes.

Deleting a column to a SCHEMA table or row of a DATA table

  1. Click on the delete icon of the specific column that you want to delete.
  2. Click on the confirm icon to delete the column.
  3. Click on the cancel icon to cancel the deletion.

Adding a foreign key reference to a column

  1. While editing a column, if setting Foreign Key (FK) to "true", the Foreign Key Reference sidebar will appear on the right side of the screen.
  2. In the Foreign Key Reference sidebar, use the displayed dropdowns to create references between tables.
  3. Click save or cancel to proceed.
  4. Click on the save icon to keep your changes or click on the cancel icon to cancel your changes.

Adding a table to a database

  1. When on the display page, click the 'Add Table' icon after you have either connected to a database or clicked 'Build Database'.
  2. Fill in the required information about the first column of your table along with a name.
  3. If you would like to include additional columns, click the 'Add Column' button in the top right corner.
  4. Click confirm to create your table.

Deleting a table from a database

  1. After you have either connected to a database or started a new database, the 'Delete Table' icon will appear on the left side of the display page
  2. This will open a pop out with a list of tables from the database.
  3. Select which table that you would like to have removed, and confirm to have it deleted.

Navigating the canvas

  1. Located on the bottom left corner of the canvas, you will find the canvas control panel.
    • Zoom On [+] - this button zooms into the canvas.
    • Zoom Out [-] - this button zooms out of the canvas.
    • Fit View [[]] - this button zooms to fit all the tables in focus.
    • Toggle Interactivity [lock] - this button toggles on and off all table and column interactivity.
    • Screenshot [camera] - this button saves a .png file of the current canvas view.

Future contributions and requests

  • If you'd like to contribute, please find a list of possible contributions here
  • If you have any requests, please submit an appropriately tagged GitHub issue
  • PRs are welcome otherwise

Credits/Contributors


License

dbSpy is developed under the MIT license.

dbspydev's People

Contributors

neighbor-peace avatar stephen-havig avatar kevin38424 avatar dahae0309 avatar g94angel avatar krismagat avatar engineerous avatar atu816 avatar mocktech avatar adrecz avatar geistnine avatar santiago-gil avatar ychiu5896 avatar tagimagi avatar anthonyal-rifai avatar 01001101ck avatar stanley7c114 avatar david-jones-git avatar mcummings190 avatar josephtejeda avatar myle1 avatar adziu1234 avatar donald-macak avatar brettguidrydev avatar pintaae86 avatar kwang929 avatar sflam2013 avatar johnruiz17 avatar miha-cha avatar de7741 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.