aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2020-06-02 16:22:09 +0800
committercrupest <crupest@outlook.com>2020-06-02 16:22:09 +0800
commitd77da4f995aa8b9710e40a70b4350a6476df98b1 (patch)
treef865dd1e936a89574f005ef9c6f3ae191f93edcb
parentdd8e25f0f9afce0f59a612ad66d3bc44ef64c9c6 (diff)
downloadtimeline-d77da4f995aa8b9710e40a70b4350a6476df98b1.tar.gz
timeline-d77da4f995aa8b9710e40a70b4350a6476df98b1.tar.bz2
timeline-d77da4f995aa8b9710e40a70b4350a6476df98b1.zip
Update README.md .
-rw-r--r--README.md13
-rwxr-xr-xtools/dotnet-run2
-rwxr-xr-xtools/open-code8
3 files changed, 9 insertions, 14 deletions
diff --git a/README.md b/README.md
index 49beaef5..ad0f9c7e 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,20 @@
# Welcome to Timeline!
-[![Build Status](https://dev.azure.com/crupest-web/Timeline/_apis/build/status/crupest.Timeline?branchName=master)](https://dev.azure.com/crupest-web/Timeline/_build/latest?definitionId=7&branchName=master)
+## Overview
This is the first web app of [me](https://github.com/crupest).
Its back-end is written in C# and built with [ASP.Net Core](https://github.com/dotnet/aspnetcore).
-Its front-end is written in Typescript and React.
+Its front-end (located [here](https://github.com/crupest/Timeline/tree/dev/Timeline/ClientApp)) is written in [Typescript](https://www.typescriptlang.org/) and [React](https://reactjs.org/).
-The final product is hosting on my [Tencent Cloud](https://cloud.tencent.com/) Cloud Virtual Machine on https://crupest.xyz.
+The final product is hosting on my [Tencent Cloud](https://cloud.tencent.com/) Cloud Virtual Machine on https://crupest.xyz .
Feel free to comment by opening an issue.
-`tools/open-code` file is a simple _bash_ script that fixes the problem that _OminiSharp_ in C# extension on vscode can't work using _dotnet_ in Arch official package repository on Arch Linux. See [this page](https://bugs.archlinux.org/task/60903).
+## Build Status
+
+| usage | branch | badge |
+| ---------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------- |
+| docker container | `master` | ![Build And Upload Docker Image](https://github.com/crupest/Timeline/workflows/Build%20And%20Upload%20Docker%20Image/badge.svg) |
+| routine build | `dev` | ![Routine Build And Test](https://github.com/crupest/Timeline/workflows/Routine%20Build%20And%20Test/badge.svg) |
diff --git a/tools/dotnet-run b/tools/dotnet-run
deleted file mode 100755
index 204d1465..00000000
--- a/tools/dotnet-run
+++ /dev/null
@@ -1,2 +0,0 @@
-#!/bin/bash
-konsole -e dotnet run --project $(dirname "$0")/../Timeline/Timeline.csproj
diff --git a/tools/open-code b/tools/open-code
deleted file mode 100755
index 0ccc04c1..00000000
--- a/tools/open-code
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-
-export DOTNET_ROOT=/opt/dotnet
-export MSBuildSDKsPath=$DOTNET_ROOT/sdk/$(${DOTNET_ROOT}/dotnet --version)/Sdks
-
-code $(dirname "$0")/..
-
-exit