From 0171b9b1ed999386176367717eb87769449c2ee7 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 6 Jan 2025 17:34:38 -0600 Subject: [PATCH 1/4] docs: set description, docs url in readme --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e451ab2..89cc29a 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ # Sideshow -This is a starter project based on -[WuttaWeb](https://wuttaproject.org). +This is a web app which provides retailers a way to track case/special +orders. + +Full docs are at https://rattailproject.org/docs/sideshow/ ## Quick Start @@ -13,6 +15,3 @@ Make a virtual environment and install the app: source sideshow/bin/activate pip install Sideshow sideshow install - -For more info see -https://rattailproject.org/docs/wuttjamaican/narr/install/index.html From 85183180ab05b6054a9e3ae4567a9320ffe0909c Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 6 Jan 2025 17:35:31 -0600 Subject: [PATCH 2/4] build: add release task --- tasks.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tasks.py diff --git a/tasks.py b/tasks.py new file mode 100644 index 0000000..6cdbab2 --- /dev/null +++ b/tasks.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8; -*- +""" +Tasks for Sideshow +""" + +import os +import shutil + +from invoke import task + + +@task +def release(c, skip_tests=False): + """ + Release a new version of Sideshow + """ + if not skip_tests: + c.run('pytest') + + # rebuild pkg + if os.path.exists('dist'): + shutil.rmtree('dist') + if os.path.exists('Sideshow.egg-info'): + shutil.rmtree('Sideshow.egg-info') + c.run('python -m build --sdist') + + # upload + c.run('twine upload dist/*') From dfaec14350e7f8acbbc1df7bcff5c5547e4dfa97 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 6 Jan 2025 17:37:40 -0600 Subject: [PATCH 3/4] =?UTF-8?q?bump:=20version=200.0.0=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b11b0d1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +## v0.1.0 (2025-01-06) + +### Feat + +- add basic "create order" feature, docs, tests + +### Fix + +- add static libcache files for vue2 + buefy From e677cd5d8cd7f8652e6552ca5389e960e8bda6dd Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 6 Jan 2025 17:38:12 -0600 Subject: [PATCH 4/4] build: ignore dist folder --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ef8d4d1..acd9fcd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.pyc *~ .coverage +dist/ docs/_build/ .tox/