-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.adoc.jinja
57 lines (42 loc) · 1.32 KB
/
README.adoc.jinja
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
= {{project_name}}
:toc:
> Project short but :cool: description
Main dependencies:
* https://docs.wagtail.org[Wagtail]
== Quickstart
TIP: Install <<just>> before continuing!
1. Setup the project
+
[source,console]
----
just setup
----
2. Update `.env` variables
[#just]
== Just
:just-url: https://github.com/casey/just
:local-dev-url: https://thorgate.gitlab.io/wagtail-stack/wagtail-stack-docs/wagtail-stack-docs/0.1.0/development/local-development.html
For best developer experience this project adopts `Makefile` alternative rewritten in Rust called {just-url}[Just]. This is basically usual Makefile but without the "historical baggage" of early software engineers.
TIP: To list all available commands _just_ run `just`
.Example output
----
Available recipes:
fmt # Reformat codebase
lint # Lint codebase
setup # Run this as a first command when cloned this project
up # Bring the project up
----
=== Howto Install
:rust-url: https://www.rust-lang.org/
:just-install-url: https://github.com/casey/just#installation
Follow {just-install-url}[instructions in official repo] for installation instructions.
*TLDR* for Ubuntu users
[source,bash]
----
snap install --edge --classic just
----
Or if you have {rust-url}[Rust] installed
[source,bash]
----
cargo install just
----