summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorMartin Kraft <mkraft@users.noreply.github.com>2017-12-20 14:49:45 -0500
committerJoram Wilander <jwawilander@gmail.com>2017-12-20 14:49:45 -0500
commite561f727c8fd1371cf7c1265947f9a952317e014 (patch)
tree1603eec34e3658184885802853df25df7e3c00e1 /build
parentdcc20167557aa1f85943410a898baf62f142bfde (diff)
downloadchat-e561f727c8fd1371cf7c1265947f9a952317e014.tar.gz
chat-e561f727c8fd1371cf7c1265947f9a952317e014.tar.bz2
chat-e561f727c8fd1371cf7c1265947f9a952317e014.zip
Updates 'make help'. (#7982)
* Updates 'make help'. * Updates description of all.
Diffstat (limited to 'build')
-rw-r--r--build/help.mk28
1 files changed, 0 insertions, 28 deletions
diff --git a/build/help.mk b/build/help.mk
deleted file mode 100644
index 364ea35e3..000000000
--- a/build/help.mk
+++ /dev/null
@@ -1,28 +0,0 @@
-help:
- @echo "-----------------------------------------------------------------------------------------------"
- @echo "------------------------------------- Makefile Help -------------------------------------------"
- @echo "-----------------------------------------------------------------------------------------------"
- @echo ""
- @echo " General:"
- @echo "make run Build and run the Mattermost server for development"
- @echo "make run-fullmap Same as run but with a full sourcemap for client"
- @echo "make stop Stops server and client."
- @echo "make restart-server Restarts the mattermost server to pick up development change."
- @echo "make clean Clean up everything except persistant server data"
- @echo "make nuke clean plus removes persistant server data"
- @echo ""
- @echo " Testing:"
- @echo "make test Runs all checks and tests below (except race detection and postgres)"
- @echo "make govet Runs govet against all packages"
- @echo "make gofmt Runs gofmt against all packages"
- @echo "make check-style Runs govet and gofmt against all packages"
- @echo "make check-server-race Runs the unit tests with race detection mode on"
- @echo "make test-postgres Runs the unit tests against a postgres database"
- @echo "make cover Runs the golang coverage tool. You must run the unit tests first."
- @echo ""
- @echo " Docker:"
- @echo "make start-docker Starts the docker containers for local development"
- @echo "make stop-docker Stops the docker containers for local development"
- @echo "make clean-docker Deletes the docker containers for local development"
- @echo ""
- @echo "-----------------------------------------------------------------------------------------------"