-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJustfile
57 lines (44 loc) · 944 Bytes
/
Justfile
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
# just is a handy way to save and run project-specific commands.
#
# https://github.com/casey/just
default:
just --list
# Build the whole project
alias b := build
build:
bin/build.sh
# Cleans the project
clean:
./gradlew clean
# Configure the docker-compose topics
alias c := configure
configure:
bin/configure.sh
# Useful if you want to pull docker images from the registry
ecr-login:
bin/ecr-login.sh
# Start docker-compose
up *ARGS:
docker-compose --compatibility up {{ARGS}}
# Start docker-compose
start *ARGS:
docker-compose start {{ARGS}}
# Stop docker-compose
stop *ARGS:
docker-compose stop {{ARGS}}
# Stop docker-compose
down *ARGS:
docker-compose down {{ARGS}}
# Display processes
ps *ARGS:
docker-compose ps {{ARGS}}
# Display logs
logs *ARGS:
docker-compose logs {{ARGS}}
# Format the code
alias f := fmt
fmt:
treefmt
# Start IDEA in this folder
idea:
nohup idea-ultimate . > /dev/null 2>&1 &