Decision Support System Dashboard is the web-based visualization dashboard for the Decision Support System course of the Information Technology program on Universitas Negeri Yogyakarta (UNY). This is the front-end app built with Next.js.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load font.
.
├── app # Routing
├── public # Static files
└── src
├── application # Application business rules
├── domain # Enterprise business rules
├── infrastructure # Framework and drivers
└── presentation # User interface
-
Set up the development environment
You need to set up your development environment before you can do anything.
Install Node.js and npm.
-
Install the dependencies
npm install
-
Run in development mode
npm run dev
Open http://localhost:3000 with your browser to see the result.
-
Generate a production build
npm run build
The output is generated inside the
.next
folder -
Start the Node.js server
npm run start
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.