Compare commits

..

No commits in common. "e677cd5d8cd7f8652e6552ca5389e960e8bda6dd" and "6954dde8bc6142c8e358eb9ebf5990604fd431dc" have entirely different histories.

4 changed files with 5 additions and 42 deletions

1
.gitignore vendored
View file

@ -1,6 +1,5 @@
*.pyc *.pyc
*~ *~
.coverage .coverage
dist/
docs/_build/ docs/_build/
.tox/ .tox/

View file

@ -1,9 +0,0 @@
## v0.1.0 (2025-01-06)
### Feat
- add basic "create order" feature, docs, tests
### Fix
- add static libcache files for vue2 + buefy

View file

@ -1,10 +1,8 @@
# Sideshow # Sideshow
This is a web app which provides retailers a way to track case/special This is a starter project based on
orders. [WuttaWeb](https://wuttaproject.org).
Full docs are at https://rattailproject.org/docs/sideshow/
## Quick Start ## Quick Start
@ -15,3 +13,6 @@ Make a virtual environment and install the app:
source sideshow/bin/activate source sideshow/bin/activate
pip install Sideshow pip install Sideshow
sideshow install sideshow install
For more info see
https://rattailproject.org/docs/wuttjamaican/narr/install/index.html

View file

@ -1,28 +0,0 @@
# -*- 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/*')