git clone https://github.com/hannahyek/eco2mmerce/
cd eco2mmerce
# Install dependencies for Flask
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Install dependencies for React
yarn
# Exit out of virtual environment
deactivate# Run the development server
yarn workspaces run dev
# Lint and format code
yarn workspaces run lint
yarn workspaces run format
# Build the app
yarn workspaces run build
docker compose up