mirror of
https://github.com/outline/outline.git
synced 2025-03-14 10:07:11 +00:00
* Separate environment configs * wip * wip * test * plugins * test * test * .sequelizerc, unfortunately can't go through /utils/environment due to not supporting TS * docker-compose -> docker compose * fix: .local wipes .development * Add custom validation message for invalid SECRET_KEY (often confused)
29 lines
635 B
Makefile
29 lines
635 B
Makefile
up:
|
|
docker compose up -d redis postgres
|
|
yarn install-local-ssl
|
|
yarn install --pure-lockfile
|
|
yarn dev:watch
|
|
|
|
build:
|
|
docker compose build --pull outline
|
|
|
|
test:
|
|
docker compose up -d redis postgres
|
|
NODE_ENV=test yarn sequelize db:drop
|
|
NODE_ENV=test yarn sequelize db:create
|
|
NODE_ENV=test yarn sequelize db:migrate
|
|
yarn test
|
|
|
|
watch:
|
|
docker compose up -d redis postgres
|
|
NODE_ENV=test yarn sequelize db:drop
|
|
NODE_ENV=test yarn sequelize db:create
|
|
NODE_ENV=test yarn sequelize db:migrate
|
|
yarn test:watch
|
|
|
|
destroy:
|
|
docker compose stop
|
|
docker compose rm -f
|
|
|
|
.PHONY: up build destroy test watch # let's go to reserve rules names
|