Skip to content

Commit 9bbca84

Browse files
committed
Merge branch '0601-yuluo/add-docs-site' of https://github.com/yuluo-yx/api-testing
2 parents b467c86 + 6053be6 commit 9bbca84

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+1579
-18
lines changed

.dockerignore

Lines changed: 0 additions & 6 deletions
This file was deleted.

site/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/public
2+
resources/
3+
node_modules/
4+
package-lock.json
5+
.hugo_build.lock

site/.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lts/*

site/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM klakegg/hugo:ext-alpine@sha256:536dd4805d0493ee13bf1f3df3852ed1f26d1625983507c8c56242fc029b44c7
2+
3+
RUN apk add git && \
4+
git config --global --add safe.directory /src

site/assets/icons/logo.png

10.9 KB
Loading

site/assets/icons/logo.svg

Lines changed: 210 additions & 0 deletions
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*
2+
3+
Add styles or override variables from the theme here.
4+
5+
*/
6+
7+
$primary: #1e71ec;
8+
$secondary: #ffffff;
9+
$dark: #4a9ff5;

site/config.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# THIS IS A TEST CONFIG ONLY!
2+
# FOR THE CONFIGURATION OF YOUR SITE USE hugo.yaml.
3+
#
4+
# As of Docsy 0.7.0, Hugo 0.110.0 or later must be used.
5+
#
6+
# The sole purpose of this config file is to detect Hugo-module builds that use
7+
# an older version of Hugo.
8+
#
9+
# DO NOT add any config parameters to this file. You can safely delete this file
10+
# if your project is using the required Hugo version.
11+
12+
module:
13+
hugoVersion:
14+
extended: true
15+
min: 0.110.0

site/content/en/_index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
title: API Testing
3+
---
4+
5+
{{< blocks/cover title="Welcome to API Testing!" image_anchor="top" height="full" >}}
6+
<a class="btn btn-lg btn-primary me-3 mb-4" href="/v0.0.1">
7+
GET STARTED <i class="fas fa-arrow-alt-circle-right ms-2"></i>
8+
</a>
9+
<a class="btn btn-lg btn-secondary me-3 mb-4" href="/contributions">
10+
CONTRIBUTING <i class="fa fa-heartbeat ms-2 "></i>
11+
</a>
12+
<p class="lead mt-5">YAML based API testing tool. interface debug and test tools.</p>
13+
<!-- 向下翻页图标 -->
14+
{{< blocks/link-down color="white" >}}
15+
<p class="lead mt-5">todo add relative content</p>
16+
{{< /blocks/cover >}}

site/content/en/about/index.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: About API Testing
3+
linkTitle: About
4+
---
5+
6+
{{% blocks/cover title="About API Testing" height="auto" %}}
7+
8+
API Testing is an open source project for interface debug and test tools.
9+
10+
Read on to find out more, or visit our [documentation](/latest/) to get started!
11+
{{% /blocks/cover %}}
12+
13+
{{% blocks/section color="black" %}}
14+
15+
## Objectives
16+
17+
---
18+
19+
// TBD.
20+
21+
{{% /blocks/section %}}

0 commit comments

Comments
 (0)