Skip to content

Commit 8aaed8e

Browse files
committed
Updating readme
1 parent 2d615fc commit 8aaed8e

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.cpcache

README.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,31 @@
77

88
#### libpython-clj projects can now be created quickly in 2 ways from the latest stable template:
99

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
1112

1213
```bash
13-
clj -A:new clj-python <mydomain.myapp> # don't copy
1414

1515
# 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
1729
```
1830

1931
**NOTE**: this assumes you have `clj-new` configured in you `~/.clojure/deps.edn`
2032
profile. If you do not, you can use the following:
2133

22-
- **without** clj-new installed in user deps.edn
2334

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-
```
3435

3536
For help please visit our [help-wanted](https://clojurians.zulipchat.com/#narrow/stream/215609-libpython-clj-dev/topic/help-wanted) topic.
3637

0 commit comments

Comments
 (0)