Skip to content

Commit 217666f

Browse files
feat: gif
1 parent 49d438a commit 217666f

5 files changed

Lines changed: 10 additions & 11 deletions

File tree

MANIFEST.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
include requirements.txt
22
include dev_requirements.txt
33
exclude config.json
4-
recursive-include {projname} *
5-
recursive-exclude {projname}/instance *
6-
recursive-exclude {projname}/migrations *
7-
recursive-exclude {projname}/static/modules *
8-
recursive-exclude {projname}/.tox *
4+
recursive-include pythoncms *
5+
recursive-exclude pythoncms/instance *
6+
recursive-exclude pythoncms/migrations *
7+
recursive-exclude pythoncms/static/modules *
8+
recursive-exclude pythoncms/.tox *
99
recursive-exclude __pycache__ *

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@
1818

1919
## Try
2020

21+
![](https://github.com/shopyo/pythoncms/raw/main/assets/term.gif)
22+
2123
In virtual env
2224

2325
```
24-
pip install pythoncms==1.2.0
26+
pip install pythoncms==1.2.1
2527
pythoncms start mysite
2628
cd mysite
2729
shopyo initialise

assets/term.gif

2.22 MB
Loading

pythoncms/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (1, 2, 0)
1+
version_info = (1, 2, 1)
22
__version__ = ".".join([str(v) for v in version_info])

pythoncms/cli.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ def start(name):
6060
dest = os.getcwd() + f"/{name}"
6161

6262
trycopytree(str(path.parent.absolute()), dest)
63-
tryrmtree(dest + "/__pycache__")
64-
tryrmtree(dest + "/migrations")
65-
tryrmtree(dest + "/instance")
66-
tryrmfile(dest + "/config.json")
63+
tryrmfile(dest + "/cli.py")
6764
trymkfile(dest + "/requirements.txt", reqs)
6865
click.echo(f"🍭 Pythoncms project {name} is ready to go!")

0 commit comments

Comments
 (0)