File tree Expand file tree Collapse file tree 2 files changed +16
-14
lines changed Expand file tree Collapse file tree 2 files changed +16
-14
lines changed Original file line number Diff line number Diff line change
1
+ .cpcache
Original file line number Diff line number Diff line change 7
7
8
8
#### libpython-clj projects can now be created quickly in 2 ways from the latest stable template:
9
9
10
- - ** with** clj-new [ installed] ( https://github.com/seancorfield/clj-new ) in user deps.edn (recommended)
10
+
11
+ - ** without** clj-new installed in user deps.edn
11
12
12
13
``` bash
13
- clj -A:new clj-python < mydomain.myapp> # don't copy
14
14
15
15
# example
16
- clj -A:new clj-python appcompany.funapp
16
+ clj -Sdeps ' {:deps {seancorfield/clj-new {:mvn/version "0.8.6"}}}' \
17
+ -m clj-new.create \
18
+ https://github.com/clj-python/clj-template@2d615fcbea6a5a39321a9e192d3dcee6319719d1 \
19
+ appcompany.funapp
20
+ ```
21
+
22
+ - ** with** clj-new [ installed] ( https://github.com/seancorfield/clj-new ) in user deps.edn (recommended)
23
+
24
+ ``` bash
25
+ # example
26
+ clj -A:new \
27
+ https://github.com/clj-python/clj-template@2d615fcbea6a5a39321a9e192d3dcee6319719d1 \
28
+ appcompany.funapp
17
29
```
18
30
19
31
** NOTE** : this assumes you have ` clj-new ` configured in you ` ~/.clojure/deps.edn `
20
32
profile. If you do not, you can use the following:
21
33
22
- - ** without** clj-new installed in user deps.edn
23
34
24
- ``` bash
25
- clj -Sdeps ' {:deps {seancorfield/clj-new {:mvn/version "0.8.6"}}}' \
26
- -m clj-new.create \
27
- clj-python < mydomain.myapp> # don't copy
28
-
29
- # example
30
- clj -Sdeps ' {:deps {seancorfield/clj-new {:mvn/version "0.8.6"}}}' \
31
- -m clj-new.create \
32
- clj-python appcompany.funapp
33
- ```
34
35
35
36
For help please visit our [ help-wanted] ( https://clojurians.zulipchat.com/#narrow/stream/215609-libpython-clj-dev/topic/help-wanted ) topic.
36
37
You can’t perform that action at this time.
0 commit comments