Home
Softono

Micro Ecommerce

Open source MIT CSS
81
Stars
54
Forks
2
Issues
2
Watchers
2 years
Last Commit

 About Micro Ecommerce

Learn how to build a Micro eCommerce Web App with Python, Serverless Postgres, and Stripe Checkout. Live demo at url below.

Platforms

Web Self-hosted Docker

Languages

CSS

Need Help Installing Micro Ecommerce?

We provide expert installation service for this software. Our team will install, configure, and secure Micro Ecommerce on your server. plans start at just $30.

Micro Ecommerce

View on GitHub

micro-ecommerce

Learn how to build a Micro eCommerce Web App with Python and Serverless Postgres

Prerequisites

  • Python experience with 30 Days of Python or similiar
  • Django experience with Try Django or similiar
  • Basic understanding of HTML and CSS

Required Software

Getting Started

mkdir -p ~/dev
cd ~/dev
git clone https://github.com/codingforentrepreneurs/micro-ecommerce
cd micro-ecommerce
git checkout start

Create dotenv file:

Run echo "" > .env to create the .env in the root of your project:

DATABASE_URL=""
DJANGO_SECRET_KEY=<some-secret>
DJANGO_DEBUG=1
ALLOWED_HOST="*"

Replace <some-secret> by any of the following commands:

openssl rand -base64 32
python -c 'from django.core.management.utils import get_random_secret_key; print(get_random_secret_key())'
python -c 'import secrets;print(secrets.token_urlsafe(32))'

=== Configure Environment

To install packages and run various command shortcuts, we use rav. Open rav.yaml to see the various commands available if you prefer to not use rav.

macOS/Linux Users

python3 -m venv venv
source venv/bin/activate
venv/bin/python -m pip install pip pip-tools rav --upgrade
venv/bin/rav run installs
rav run freeze

In rav.yaml, you'll see that rav run installs maps to:

  • venv/bin/pip-compile src/requirements/requirements.in -o src/requirements.txt
  • venv/bin/python -m pip install -r src/requirements.txt
  • npm install

Windows Users

c:\Python310\python.exe -m venv venv
.\venv\Scripts\activate
python -m pip install pip pip-tools rav --upgrade
rav run win_installs
rav run win_freeze

In rav.yaml, you'll see that rav run win_installs maps to:

  • pip-compile src/requirements/requirements.in -o src/requirements.txt
  • python -m pip install -r src/requirements.txt
  • npm install

=== Main Commands

With all the configuration done, here are the main commands you'll run:

rav run server
rav run watch
rav run vendor_pull
  • rav run server maps to python manage.py runserver in the src folder
  • rav run watch triggers tailwind to watch the tailwind input file to make the compiled tailwind output file via npx tailwindcss -i <input-path> -o <output-path> --watch
  • rav run vendor_pull run this occasionally to pull the latest version of Flowbite, HTMX, and any other third party static vendor files you need.