Go to file
2023-03-03 22:44:51 +08:00
.github/ISSUE_TEMPLATE docs: add issue templates 2023-03-03 22:44:51 +08:00
docs support hide dependency and codeOnly dependency (#20) 2022-12-15 20:09:05 +08:00
initializer-generator Rename rocketmq to sca-rocketmq to fix #45 2023-01-18 13:25:17 +08:00
initializer-page docs: deleted invalid file 2023-01-17 23:52:28 +08:00
.gitignore Project initial 2022-12-03 00:54:53 +08:00
Dockerfile Add Dockerfile 2022-12-09 11:54:45 +08:00
LICENSE Project initial 2022-12-03 00:54:53 +08:00
pom.xml Make sure the project can be on Mac M1. Fix #37 2023-01-10 15:30:03 +08:00
README-zh.md Python is a requirement to build the project. 2023-01-10 15:34:37 +08:00
README.md Python is a requirement to build the project. 2023-01-10 15:34:37 +08:00

English | 简体中文


Cloud Native App Initializer

Docs

Code structure

This is a Cloud Native App Initializer project derived from Spring Initializr, you can directly experience the function of the project through start.aliyun.com, which includes the following modules:

  • initializer-generator: Generate Project Modules, part of the basic code of start.spring.io is referenced in the io.spring.start.site directory.
  • initializer-page: Front page

Run from source

Please clone the project locally and make sure you have a Java 17 environment.

Build project

Make sure you have python installed on your computer.

In the project root directory, execute the following commands to install Node and Yarn:

mvn compile -P install-yarn

In the project root directory, execute the following command to copy the static files to the target of the initializer-generator module:

mvn prepare-package

Run project

Enter the initializer-generator module and execute the following command to start the application:

cd initializer-generator
mvn spring-boot:run

In the browser, enter http://127.0.0.1:7001/bootstrap.html to use the initializer project for project bootstrap.

Run based on Docker

Before performing subsequent operations, please ensure that Docker has been installed in the relevant environment.

Pull image

Execute the following command on the local command line to pull the initializer project image:

docker pull registry.cn-hangzhou.aliyuncs.com/cloud-native-app-initializer/initializer:latest

Start the container

Execute the following command on the local command line to start the initializer container:

docker run -it -p 127.0.0.1:7001:7001 registry.cn-hangzhou.aliyuncs.com/cloud-native-app-initializer/initializer:latest

License

This project is a project under the Apache 2.0 license.