# WebPlatform **Repository Path**: darkidiot/WebPlatform ## Basic Information - **Project Name**: WebPlatform - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README iWork Web Platform ======================================== Recommended IDE: IntelliJ IDEA How to Build ------------ Building requires: - JDK 8+ - Maven 3.5.4+ ### Use -DskipTests to avoid test 1. to generate all business Model, need re-compile project firstly under Project Root Path. ``` $ cd ./jute $ ./mvn clean install ``` 2. then, start application: ``` $ cd ./web $ ./mvn package $ java -jar ./target/web-{version}.jar ``` 3. finally, access Swagger to Explore what you are interesting. ``` WEB Browser: http://localhost:{server.port}/swagger-ui/index.html ``` How to Import -------- Use IntelliJ IDEA import this project: 1. Download source code form git repository to {your path} 2. Open IDEA -> "File" -> "New" -> "Project form Existing Sources". 3. Select {your path} as Project root, click "Next" button if you don't want any customization and finally click "Finish" button to accomplish the importing activity.