From 42cd62ab16317dcdf80c9cd02a756bc5f1aa72ba Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Sat, 12 Nov 2022 20:56:39 -0500 Subject: [PATCH] Update readme --- readme.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/readme.md b/readme.md index 86ebca2..0629ac2 100644 --- a/readme.md +++ b/readme.md @@ -26,18 +26,18 @@ Installs and initializes a local database. Currently supported: ### Setup Python for Development Runs a few separate setup tasks, in order: * Adds the "deadsnakes" ppa (`sudo add-apt-repository ppa:deadsnakes/ppa`) if not present on system. -** This allows easily and cleanly installing different Python versions on the system. -** Not sure if I'd recommend this ppa for production use, as it might not always have the latest security fixes as soon - as possible. But it's certainly useful and convienent for local development purposes. + * This allows easily and cleanly installing different Python versions on the system. + * Not sure if I'd recommend this ppa for production use, as it might not always have the latest security fixes as + soon as possible. But it's certainly useful and convienent for local development purposes. * Installs Python3.7, Python3.8, Python3.9, and Python3.10 on the system, if not already present. * Installs and configures [PipEnv](https://pipenv.pypa.io/en/latest/) if not already present. -** See also [PipEnv Notes](https://wiki.brandon-rodriguez.com/Python/PipEnv) for usage. + * See also [PipEnv Notes](https://wiki.brandon-rodriguez.com/Python/PipEnv) for usage. * Updates the standard cd command: -** Changing into a directory with the folders ".env" or ".venv" will try to automatically load that as the active Python - virtual environment. -** Changing out of that same directory will deactivate the current Python virtual environment. -** See https://git.brandon-rodriguez.com/python/example_projects/virtual_environments/-/blob/master/helper_script.sh for - full script. + * Changing into a directory with the folders ".env" or ".venv" will try to automatically load that as the active + Python virtual environment. + * Changing out of that same directory will deactivate the current Python virtual environment. + * See https://git.brandon-rodriguez.com/python/example_projects/virtual_environments/-/blob/master/helper_script.sh + for full script. ### Install/Update Npm & NodeJs -- GitLab