-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
# mrls | ||
# About MRLS | ||
|
||
GitLabからMergeRequestを取得して一覧表示する( | ||
ユーザー単位でgroup byして表示) | ||
|
||
# Get Started | ||
|
||
1. application-env.ymlをコピーしてapplication-local.yml作成 | ||
|
||
```bash | ||
git clone https://github.com/tttol/mrls.git | ||
cd mrls/src/main/resources/ | ||
cp application-env.yml application-local.yml | ||
``` | ||
|
||
2. application-local.ymlの以下を編集 | ||
|
||
- `${app.gitlab.project.id}` | ||
- GitLabプロジェクトのプロジェクトID | ||
- Project -> Settings -> General -> Project ID | ||
- `${app.gitlab.project.accessToken}` | ||
- Gitlabプロジェクトアクセストークン | ||
- Project -> Settings -> Access Tokens | ||
|
||
3. アプリ起動 | ||
|
||
```bash | ||
./gradlew bootRun -Dspring.profiles.active=local | ||
``` |