mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 20:57:56 +08:00
* Collect all env vars in one, easy-to-find place Past state: * Default environement variables were stored in both client/package.json and client/__tests__/e2e/config.js * Constants that should have been linked--like the cellxgene server port during testing--were repeated. With this commit: * All environment variables are parameterized * All environment variables are packaged in default env files * Move npm scripts to client Makefile * Respond to feedback from @seve and @bkmartinjr
11 lines
148 B
Makefile
11 lines
148 B
Makefile
include ../common.mk
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f app/web/templates/index.html
|
|
rm -rf app/web/static
|
|
|
|
.PHONY: unit-test
|
|
unit-test:
|
|
pytest -s test
|