forked from moonshine-software/devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
62 lines (53 loc) · 1.73 KB
/
Makefile
File metadata and controls
62 lines (53 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
-include .env
THIS_FILE := $(lastword $(MAKEFILE_LIST))
DOCKER_COMPOSE := $(shell command -v docker-compose >/dev/null 2>&1 && echo "docker-compose" || echo "docker compose")
app := $(COMPOSE_PROJECT_NAME)-php
app-npm := npm
path := $(APP_PATH)
.PHONY: install-local install-docker fork build up docker-up info stop it it-app it-nginx npm-install npm-update npm-build npm-host
install-local: fork
cd ./moonshine && \
composer install --dev && \
npm install && \
[ ! -f phpunit.xml.dist ] && cp phpunit-example.xml.dist phpunit.xml.dist && \
cd .. && \
[ ! -f .env ] && cp .env.example .env && \
composer update && \
touch database/database.sqlite && \
php artisan migrate:fresh --seed
install-docker: fork build info
up: docker-up info
fork:
@read -p "Fork (git@github.com:moonshine-software/moonshine.git): " ARG; \
mkdir -p ./moonshine; \
git clone $$ARG ./moonshine;
#docker
build:
$(DOCKER_COMPOSE) -f docker-compose.yml up --build -d $(c)
@echo "See installation logs: docker logs -f $(app)"
@echo "Fill the database: make seed"
docker-up:
$(DOCKER_COMPOSE) -f docker-compose.yml up -d $(c)
stop:
$(DOCKER_COMPOSE) -f docker-compose.yml stop $(c)
it:
docker exec -it $(to) /bin/bash
it-app:
docker exec -it $(app) /bin/bash
it-nginx:
docker exec -it $(nginx) /bin/bash
seed:
docker exec -it $(app) php artisan db:seed
info:
@echo "$(APP_URL)/admin"
@echo "User: dev@getmoonshine.app"
@echo "Pass: 12345"
#npm
npm-install:
$(DOCKER_COMPOSE) run --rm --service-ports $(app-npm) install $(c)
npm-update:
$(DOCKER_COMPOSE) run --rm --service-ports $(app-npm) update $(c)
npm-build:
$(DOCKER_COMPOSE) run --rm --service-ports $(app-npm) run build $(c)
npm-host:
$(DOCKER_COMPOSE) run --rm --service-ports $(app-npm) run dev --host $(c)