Compare commits
No commits in common. "76075f146ce251608cfc54fb94ce0be332e2849d" and "a14b97243c044085b8cde46ef9a3a7cbc51b0dd4" have entirely different histories.
76075f146c
...
a14b97243c
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -1,15 +1,3 @@
|
||||||
## v0.5.0 (2025-01-26)
|
|
||||||
|
|
||||||
### Feat
|
|
||||||
|
|
||||||
- add pkg extras for postgres, mysql; update install doc
|
|
||||||
- allow basic support for item discounts
|
|
||||||
|
|
||||||
### Fix
|
|
||||||
|
|
||||||
- add setup hook to auto-create Order Admin role
|
|
||||||
- bugfix for view order item page template
|
|
||||||
|
|
||||||
## v0.4.0 (2025-01-23)
|
## v0.4.0 (2025-01-23)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
@ -8,33 +8,21 @@ Prerequisites
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
You'll need Python >= 3.8, and a database. See also
|
You'll need Python >= 3.8, and a database. See also
|
||||||
the Wutta docs:
|
:doc:`wuttjamaican:narr/install/prereqs` in the Wutta docs.
|
||||||
|
|
||||||
* :doc:`wuttjamaican:narr/install/prereqs`
|
|
||||||
* :ref:`wuttjamaican:create-appdb`
|
|
||||||
|
|
||||||
But for convenience here is a cheat sheet:
|
|
||||||
|
|
||||||
*PostgreSQL*
|
|
||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
sudo apt install build-essential python3-dev python3-venv postgresql libpq-dev
|
sudo apt install build-essential python3-dev python3-venv postgresql libpq-dev
|
||||||
|
|
||||||
sudo -u postgres createuser sideshow
|
As for the database, see also :ref:`wuttjamaican:create-appdb` but FYI
|
||||||
sudo -u postgres psql -c "ALTER USER sideshow PASSWORD 'mypassword'"
|
these docs will assume a PostgreSQL setup with ``sideshow`` as the DB
|
||||||
sudo -u postgres createdb -O sideshow sideshow
|
name (and PG username).
|
||||||
|
|
||||||
*MySQL*
|
|
||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
sudo apt install build-essential python3-dev python3-venv default-mysql-server
|
sudo -u postgres createuser sideshow
|
||||||
|
sudo -u postgres psql -c "ALTER USER sideshow PASSWORD 'mypassword'"
|
||||||
sudo mysql -e "CREATE USER sideshow@localhost"
|
sudo -u postgres createdb -O sideshow sideshow
|
||||||
sudo mysql -e "ALTER USER sideshow@localhost IDENTIFIED BY 'mypassword'"
|
|
||||||
sudo mysqladmin create sideshow
|
|
||||||
sudo mysql -e "GRANT ALL ON sideshow.* TO sideshow@localhost"
|
|
||||||
|
|
||||||
|
|
||||||
Virtual Environment
|
Virtual Environment
|
||||||
|
@ -61,16 +49,12 @@ the folder ownership should be changed to whatever you need:
|
||||||
Install Sideshow
|
Install Sideshow
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
First install the Sideshow package to your virtual environment. Note
|
First install the Sideshow package to your virtual environment:
|
||||||
that you must specify which DB backend to use:
|
|
||||||
|
|
||||||
.. code-block:: sh
|
.. code-block:: sh
|
||||||
|
|
||||||
# postgres
|
cd /srv/envs/sideshow
|
||||||
bin/pip install Sideshow[postgres]
|
bin/pip install Sideshow
|
||||||
|
|
||||||
# mysql
|
|
||||||
bin/pip install Sideshow[mysql]
|
|
||||||
|
|
||||||
Then you can run the Sideshow installer:
|
Then you can run the Sideshow installer:
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "Sideshow"
|
name = "Sideshow"
|
||||||
version = "0.5.0"
|
version = "0.4.0"
|
||||||
description = "Case/Special Order Tracker"
|
description = "Case/Special Order Tracker"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [
|
authors = [
|
||||||
|
@ -32,12 +32,11 @@ classifiers = [
|
||||||
license = {text = "GNU General Public License v3+"}
|
license = {text = "GNU General Public License v3+"}
|
||||||
requires-python = ">= 3.8"
|
requires-python = ">= 3.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"WuttaWeb>=0.20.6",
|
"psycopg2",
|
||||||
|
"WuttaWeb>=0.20.5",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
postgres = ["psycopg2"]
|
|
||||||
mysql = ["mysql-connector-python"]
|
|
||||||
docs = ["Sphinx", "furo", "sphinxcontrib-programoutput", "enum-tools[sphinx]"]
|
docs = ["Sphinx", "furo", "sphinxcontrib-programoutput", "enum-tools[sphinx]"]
|
||||||
tests = ["pytest-cov", "tox"]
|
tests = ["pytest-cov", "tox"]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue