Commit Graph

14 Commits

Author SHA1 Message Date
Joy Paul af92471c61
Update broken links on `client/DEVELOPMENT.md` (#2005)
* Update broken links

- remove link for `The pull request workflow`
- update link for `Set up Knative`
- update link for `go mod`

* Update go mod link
2025-07-02 18:45:54 +00:00
Dhruv Garg 1f9ece20ee
Update and reorganise kn cli setup docs (#1799)
* Update and reorganise kn cli setup docs

* fix grammar

Co-authored-by: David Simansky <dsimansk@redhat.com>

* restore docs/README.md with selective content

* Update user guide link to point to official website

Co-authored-by: David Simansky <dsimansk@redhat.com>

---------

Co-authored-by: David Simansky <dsimansk@redhat.com>
2023-04-12 12:43:49 +00:00
Roland Huß 4af20afebb
chore: Cleaned up README (#677)
* chore: Cleaned up README

This is just a start for reorganizing the client side documentation.

* fix: link

* chore(README): Fix link

* chore: fixed link

* review fixes

* minor wording
2020-03-03 04:44:53 -08:00
Murugappan Chetty 8a9d8fcc94 Add readme for tests (#554) (#555)
* Add readme for tests (#554)

* add step to run test case selectively

* add step to run test case selectively

* add step to run test case selectively

* add step to run test case selectively

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* Update test/README.md

Co-Authored-By: Navid Shaikh <nshaikh@redhat.com>

* review changes for pr #555

* review changes for pr #555

* review changes for pr #555

* review changes for pr #555

* review changes for pr #555

* review changes for pr #555
2019-12-16 23:18:02 -08:00
Navid Shaikh 4128022fb7 Update deps using go 1.13 (#535)
- Commit results of codegen using go 1.13
 - Update DEVELOPMENT.md to mention go 1.13
2019-12-11 02:38:49 -08:00
Navid Shaikh c213fec7f0 docs: References golang 1.12 or later in docs (#355)
Fix #353

As we require minimum 1.12.x for building  kn
2019-08-09 08:35:05 -07:00
Doug Davis 5744df3164 Update dev docs for some missing bits (#316)
Signed-off-by: Doug Davis <dug@us.ibm.com>
2019-08-05 02:37:54 -07:00
Roland Huß 55073029b4 fix(build): Minor build optimizations (#265)
* Check that every generated file has been regenerated for CI
* No color when not on a tty which is useful for build logs
* Always do updates when called without args
* Removed -u option and added -c for codegen only (dep update, docs gen, formatting, license check)
2019-07-15 13:21:27 -07:00
Rohan Kumar c2be52d281 Chore: Fix typos in docs (#178) 2019-06-17 12:08:46 -07:00
Suraj Narwade 5308101a48 Move DEVELOPMENT.md to docs directory (#105)
* it will make easy to access docs from single directory, it will also help in case if we create github pages for the same

* fixed links from README.md

rebased and addressed comments
2019-06-08 08:47:41 -07:00
Roland Huß 8a1adf0cb0 feat(build.sh): Add a watch mode for automatic recompilation (#160)
This features uses and requires https://github.com/AgentCosmic/xnotify
and should work on any platform

Use it with

* Watch & compile: build.sh --watch
* Watch, compile, test: build.sh --watch --test
* Watch, compile, test & verbose output: build.sh --watch --test --verbose

(shortcuts -w && -t can be used, too)
2019-06-06 18:10:40 -07:00
Roland Huß 9221429cb0 feat(build.sh): Adding options and running tests (#149)
* feat(build.sh): Adding options and running tests

* Added running unit tests to the script
* Added options to support different development flows (see help message below)
* Allow symlinking to /usr/local/bin so that the script can be called from everywhere

Usage message:

Knative Client Build Script

Usage: hack/build.sh [... options ...]

with the following options:

-f  --fast                    Only build (without formatting, testing, code generation)
-t  --test                    Run tests even when used with --fast
-u  --update                  Update dependencies
-h  --help                    Display this help message
    --verbose                 Verbose script output (set -x)

You can add a symbolic link to this build script into your PATH so that it can be
called from everywhere. E.g.:

ln -s .../hack/build.sh /usr/local/bin/kn_build.sh

Examples:

* Compile, format, tests, docs:       build.sh
* Compile only:                       build.sh --fast
* Compile with tests:                 build.sh -f -t

* doc(build.sh): Added documentation for new build.sh options

* docs(build.sh): Cosmetic fixes

* docs(build.sh): Tiny documentation fix

* chore(build.sh): Another typo fix
2019-05-30 10:18:32 -07:00
Doug Davis 6582e8239a Add a Makefile (#83)
Just to make it a little easier for folks.

Signed-off-by: Doug Davis <dug@us.ibm.com>
2019-05-10 11:58:38 -07:00
Navid Shaikh ae0e97ae3f Adds DEVELOPMENT.md (#39)
* Adds DEVELOPMENT.md

 Fixes #26
 Also adds CONTRIBUTING.md which points to knative/docs.

* Links DEVELOPMENT.md with README.md

 - also removes the build steps as those are now part of DEVELOPMENT.md
 - links the install guide to www.knative.dev/docs/install/
 - removes unnecessary GOPATH setup steps
 - removes CONTRIBUTING.md as its linked from README.md now
 - links all references for contribution guide to https://www.knative.dev/contributing/

* Updates the repo fork step and removes unnecessary heading
2019-04-02 10:36:55 -07:00