A lightweight tool for prototyping production systems strucutures.
1. Overview
2. Features
3. App setup
4. Acknowledgements
The Production System Designer is a tool developed as a practical component for my engineering thesis. This application serves as a simple solution for designing and visualizing production systems. Whether you are a student working on an engineering thesis or a professional involved in production system design, this app simplifies the process and enhances your ability to quickly prototype efficient and well-organized production systems.
Easily create a tree list representation of your production system. Organize and structure components and devices to get a clear overview of the entire system hierarchy.
Utilize the intuitive layout drawing feature to design the physical arrangement of the selected production system.
Generate summary reports for your designed production systems in PDF format. These reports provide valuable insights into the structure, layout, and key components of the system, aiding in documentation and analysis.
In current state, the application is only able tu run locally and requires You to set it up by yourself. To get started with the Production System Designer, follow these steps:
-
Clone the Repository:
git clone https://github.com/macpli/production-system-designer.gitT
-
Install Dependencies:
cd web-app-for-production-resource-database/ProductionSystemsWebApp npm install
-
Run the Application:
ng serve
-
Access the App: Open your web browser and navigate to
http://localhost:4200
to access the Production System Designer.
-
Install Dependencies
cd ProductionSystems/WebApi dotnet restore dotnet build
-
Run the Application:
dotnet run
-
Configure SQL Server:
Ensure that SQL Server is running and note your connection settings (server name, username, password).
-
Open and Run the SQL Script:
Open SQL Server Management Studio (SSMS), connect to your server, and do the following:
- Open the Database/setup.sql file from the repository.
- Execute the script to create the database schema.
-
Verify Database:
Once the script runs successfully, you can verify that the database has been created by viewing it in SQL Server Management Studio or by running a SQL query to check for the created tables. Make sure that the connection string, database name and password are correct in ProductionSystems/WebApi/appsettings.json and ProductionSystems/WebApi/Program.cs
- Node.js (v14 or higher)
- npm (v6 or higher)
- Angular (v17)
- dotnet 6.0
- SqlServer
This app uses fabric.js for drawing 2D layouts and pdfmake for PDF generation:
- fabric.js: https://github.com/fabricjs/fabric.js
- pdfmake: https://github.com/bpampuch/pdfmake