https://github.com/hackjutsu/runninginformationanalysisserviceta
Running Information Analysis Service, TA版
https://github.com/hackjutsu/runninginformationanalysisserviceta
Last synced: about 1 year ago
JSON representation
Running Information Analysis Service, TA版
- Host: GitHub
- URL: https://github.com/hackjutsu/runninginformationanalysisserviceta
- Owner: hackjutsu
- License: mit
- Created: 2017-04-09T01:23:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-14T06:01:36.000Z (about 9 years ago)
- Last Synced: 2025-02-07T20:23:08.191Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Running Information Analysis Service (TA版)
## 下载代码
```
git clone https://github.com/hackjutsu/RunningInformationAnalysisServiceTA.git
cd RunningInformationAnalysisServiceTA
```
## 启动数据库
### 启动 MySQL Docker
```
docker-compose up -d
```
### 登录数据库
登录数据库console
```
mysql --host=127.0.0.1 --port=3306 --user=root --password=root
```
查看已有数据库。
```
show databases;
```
如果不存在`running_information_analysis_db`,就新建一个
```
create database running_information_analysis_db;
```
退出数据库console
```
\q
```
## 启动 Spring Application
```bash
mvn clean install
```
启动server
```bash
java -jar ./target/running-information-analysis-service-1.0.0.BUILD-SNAPSHOT.jar
```
## License
[MIT@CosmoX](https://github.com/hackjutsu/RunningInformationAnalysisServiceTA/blob/master/LICENSE)