Requirements
What you need to install DashPress.
You will be needing the following few things to run DashPress
- Node.js
- A database you want to interface
A well-designed database is not compulsory but it will get you a lot of functionality and have to do less setup.
Having a well-designed schema entails
- Having your
user_id
joined correctly to theusers
table - Having enums when appropriate as opposed to just plain text
- Having non-nullable columns when needed
- Having length for text fields
- Using boolean fields instead of "YES/NO"
- Having a primary field for every table