Skip to main content

Development and Release

SeaORM Pro Plus

SeaORM Pro is free-to-use software. All backend source code is MIT Licensed, but the frontend source code is closed for the time being.

SeaORM Pro Plus provides additional features and access to the frontend source code.

Development

You can start a development server to see the code changes in live.

cd pro_admin_frontend

# Setup
npm install

# Start live development server
npm run dev

Build Release

Create production build and serve it via backend server.

cd pro_admin_frontend

# Build frontend
npm run build

# Delete old frontend build
rm -rf ../assets/admin

# Copy new frontend build to backend server
cp -r dist ../assets/admin