Skip to content

Commit c0a120f

Browse files
committed
Update README
1 parent 314c148 commit c0a120f

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# GitFx - Create a Serverless service in Git hosting
22

3-
[![GitFx Testing](https://github.com/gitx-io/GitFx/workflows/Test%20run%20funcs/badge.svg)](https://github.com/gitx-io/GitFx/blob/master/.github/workflows/test_run_funcs.yml)
4-
[![GitFx Lint](https://github.com/gitx-io/GitFx/workflows/Lint/badge.svg)](https://github.com/gitx-io/GitFx/blob/master/.github/workflows/linter.yml)
3+
[![GitFx Testing](https://github.com/gitfx/GitFx/workflows/Test%20run%20funcs/badge.svg)](https://github.com/gitfx/GitFx/blob/master/.github/workflows/test_run_funcs.yml)
4+
[![GitFx Lint](https://github.com/gitfx/GitFx/workflows/Lint/badge.svg)](https://github.com/gitfx/GitFx/blob/master/.github/workflows/linter.yml)
55

66
GitFx can be used to run some functions and serve the output as a service in a Git hosting.
77

8-
GitFx is a Python lib extracted from an action [ActionServerless](https://github.com/gitx-io/ActionServerless). And now the action uses this lib as a dependency to do the real job, you can run the lib locally in a same way as in the action.
8+
GitFx is a Python lib extracted from an action [ActionServerless](https://github.com/gitfx/ActionServerless). And now the action uses this lib as a dependency to do the real job, you can run the lib locally in a same way as in the action.
99

1010
## Prerequisites
1111

@@ -45,40 +45,40 @@ python3 -m gitfx test/
4545

4646
then the program's output is written to a file located in `api/py_hello.json` that you defined as a route in the comment.
4747

48-
You can use the [ActionServerless](https://github.com/gitx-io/ActionServerless) to run functions in GitHub, and also you can run locally as above example then push the generated files to the remote.
48+
You can use the [ActionServerless](https://github.com/gitfx/ActionServerless) to run functions in GitHub, and also you can run locally as above example then push the generated files to the remote.
4949

50-
more languages' examples you can find [here](https://github.com/gitx-io/GitFx/tree/master/test/func_examples).
50+
more languages' examples you can find [here](https://github.com/gitfx/GitFx/tree/master/test/func_examples).
5151

5252

5353
## Languages supported
5454

5555
| Language | Dependency Installation | Version Management | Example code |
5656
| ------------- | ------------- | -------------------- | :------------: |
57-
| Python |`requirements.txt` |`.python-version` [pyenv](https://github.com/pyenv/pyenv) | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.py) |
58-
| Ruby |`Gemfile` |`.ruby-version` [rvm](https://rvm.io/)/[rbenv](https://github.com/rbenv/rbenv) | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.rb) |
59-
| Node.js |`package.json` |`.nvmrc` [nvm](https://github.com/nvm-sh/nvm) | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.js) |
60-
| Perl |`cpanfile` |`.perl-version` [plenv](https://github.com/tokuhirom/plenv) | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.pl) |
61-
| PHP |`composer.json` |`.phpenv-version` [phpenv](https://github.com/phpenv/phpenv) | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.php) |
62-
| Golang | ⬜️ | ⬜️ | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.go) |
63-
| Haskell | ⬜️ | ⬜️ | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.hs) |
64-
| Elixir | ⬜️ | ⬜️ | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.exs) |
65-
| Bash | -- | -- | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.sh) |
66-
| Rust | ⬜️ | ⬜️ | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.rs) |
67-
| Deno | -- | ⬜️ | [See](https://github.com/gitx-io/GitFx/blob/master/test/func_examples/function.ts) |
57+
| Python |`requirements.txt` |`.python-version` [pyenv](https://github.com/pyenv/pyenv) | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.py) |
58+
| Ruby |`Gemfile` |`.ruby-version` [rvm](https://rvm.io/)/[rbenv](https://github.com/rbenv/rbenv) | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.rb) |
59+
| Node.js |`package.json` |`.nvmrc` [nvm](https://github.com/nvm-sh/nvm) | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.js) |
60+
| Perl |`cpanfile` |`.perl-version` [plenv](https://github.com/tokuhirom/plenv) | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.pl) |
61+
| PHP |`composer.json` |`.phpenv-version` [phpenv](https://github.com/phpenv/phpenv) | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.php) |
62+
| Golang | ⬜️ | ⬜️ | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.go) |
63+
| Haskell | ⬜️ | ⬜️ | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.hs) |
64+
| Elixir | ⬜️ | ⬜️ | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.exs) |
65+
| Bash | -- | -- | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.sh) |
66+
| Rust | ⬜️ | ⬜️ | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.rs) |
67+
| Deno | -- | ⬜️ | [See](https://github.com/gitfx/GitFx/blob/master/test/func_examples/function.ts) |
6868

6969
* ✅ Feature supported
7070
* ⬜ Feature not supported yet
7171
* -- N/A
7272

7373
## Documents
7474

75-
* [before_script](https://github.com/gitx-io/GitFx/wiki/before_script)
76-
* [HTTP Headers](https://github.com/gitx-io/GitFx/wiki/HTTP-Headers)
75+
* [before_script](https://github.com/gitfx/GitFx/wiki/before_script)
76+
* [HTTP Headers](https://github.com/gitfx/GitFx/wiki/HTTP-Headers)
7777

7878
## Real world examples
7979

80-
* [Shell functions to get Docker image versions](https://github.com/gitx-io?q=docker-major-versions&type=public&language=shell&sort=name)
81-
* [Run examples for 30-Days-Of-Python tutorial](https://github.com/gitx-io/30-Days-Of-Python)
80+
* [Shell functions to get Docker image versions](https://github.com/gitfx?q=docker-major-versions&type=public&language=shell&sort=name)
81+
* [Run examples for 30-Days-Of-Python tutorial](https://github.com/gitfx/30-Days-Of-Python)
8282

8383
## Contributions
8484

0 commit comments

Comments
 (0)