mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-21 15:10:22 +00:00
readme
This commit is contained in:
parent
886035424d
commit
39ced4bacd
3 changed files with 17 additions and 9 deletions
12
.github/workflows/developer_ci.yml
vendored
12
.github/workflows/developer_ci.yml
vendored
|
@ -35,8 +35,6 @@ jobs:
|
|||
echo $version
|
||||
echo "::set-output name=version::$version"
|
||||
echo "VERSION=$version" >> $GITHUB_ENV
|
||||
echo ${{ secrets.DOCKER_USERNAME2 }}
|
||||
echo ${{ secrets.DOCKER_PASSWORD2 }}
|
||||
|
||||
- uses: mr-smithers-excellent/docker-build-push@v5
|
||||
name: Build & push Docker image
|
||||
|
@ -47,8 +45,8 @@ jobs:
|
|||
registry: docker.io
|
||||
dockerfile: appmanage/Dockerfile
|
||||
directory: appmanage
|
||||
username: ${{ secrets.DOCKER_USERNAME2 }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD2 }}
|
||||
username: websoft9admin
|
||||
password: Qiaofeng@1227
|
||||
|
||||
ci-test:
|
||||
needs: build-image
|
||||
|
@ -68,6 +66,10 @@ jobs:
|
|||
- name: Checkout source branch
|
||||
run: git checkout ${{ steps.source_commit.outputs.commit }}
|
||||
|
||||
- name: Install
|
||||
run: |
|
||||
wget https://websoft9.github.io/websoft9/install/install.sh && bash install.sh online
|
||||
|
||||
- name: Test
|
||||
run: |
|
||||
cat README.md && cat version.json
|
||||
echo "Test"
|
||||
|
|
6
.github/workflows/push.yml
vendored
6
.github/workflows/push.yml
vendored
|
@ -6,13 +6,13 @@ on:
|
|||
- main
|
||||
|
||||
jobs:
|
||||
build:
|
||||
ci-test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Test
|
||||
- name: Install
|
||||
run: |
|
||||
cat README.md && cat version.json
|
||||
wget https://websoft9.github.io/websoft9/install/install.sh && bash install.sh online
|
||||
|
|
|
@ -43,7 +43,7 @@ Instead of reinventing the wheel, we integrate the best open source products int
|
|||
- [Redis](https://redis.io/): The open source, in-memory data store
|
||||
- [Appmanage](https://github.com/Websoft9/websoft9/tree/main/appmanage): API for manage docker compose based application powered by Wesoft9
|
||||
|
||||
# Install
|
||||
# User Guide
|
||||
|
||||
## Installation
|
||||
|
||||
|
@ -61,6 +61,12 @@ sudo su
|
|||
curl https://websoft9.github.io/websoft9/install/update.sh | bash
|
||||
```
|
||||
|
||||
## Getting Started
|
||||
|
||||
Using local Chrome or Firefox to visit the URL http://domain:9000 name or http://Internet IP:900, you will enter the websoft9
|
||||
|
||||
> Login using the username and password of the Linux operating system
|
||||
|
||||
# Contributing
|
||||
|
||||
- websoft9 appmanage
|
||||
|
|
Loading…
Reference in a new issue