From 9d1393ebae45ea873f5720293033176ba10167a3 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sat, 1 Mar 2025 17:41:12 -0500 Subject: [PATCH] modified: Makefile modified: README.rst --- Makefile | 2 +- README.rst | 12 +++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index a5c7f7a..925d382 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ install-from-pypi: venv config install init-db # Install and setup from source (editable mode) install-from-source: venv config install-source-dev-and-test init-db -# Install and setup from source (editable mode) +# Install and setup from source (no edit) install-from-source-prod: venv config install-source-prod init-db # ----------------------------------------------------------------------------- diff --git a/README.rst b/README.rst index a403348..81a5aa6 100644 --- a/README.rst +++ b/README.rst @@ -1,10 +1,14 @@ Quick Start: Operating a Server with PyPI or Source Code ============================================================== -This Makefile‑based workflow lets you choose between installing Remarkbox from PyPI packages or directly from the source code (editable mode). Both flows create a virtual environment in ``./env`` and store configuration and SQLite data in the persistent ``./data`` directory. +This ``Makefile`` based workflow lets you choose between installing Remarkbox from PyPI packages or directly from the source code (editable mode). Both flows create a virtual environment in ``./env`` and store configuration and SQLite data in the persistent ``./data`` directory. 1. **Install Remarkbox** + - Get the ``Makefile`` in your present working direcory, run:: + + wget "https://git.unturf.com/engineering/remarkbox/remarkbox/-/blob/main/Makefile" + - For a PyPI Installation, run:: make install-from-pypi @@ -29,12 +33,6 @@ This Makefile‑based workflow lets you choose between installing Remarkbox from Other commands—such as ``make test``, and ``make http`` operate within this environment. -For a production installation, additional meta packages are available, for example: - -..code-block:: bash - - pip install remarkbox[prod] - Remarkbox ==============================================