Skip to content

Instantly share code, notes, and snippets.

View Khnaz35's full-sized avatar
🤪
Need help with some free projects

Ali Khnaz35

🤪
Need help with some free projects
  • Malaysia
  • 10:25 (UTC +08:00)
View GitHub Profile
@Khnaz35
Khnaz35 / ISOCountryCodes.csv
Created August 6, 2021 04:58 — forked from u10int/ISOCountryCodes.csv
iOS Country Codes
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
AD Andorra
AE United Arab Emirates
AF Afghanistan
AG Antigua and Barbuda
AI Anguilla
AL Albania
AM Armenia
AN Netherlands Antilles
AO Angola
AQ Antarctica

OpenCart Deployment and Management Guide

Introduction

This guide provides step-by-step instructions on how to deploy OpenCart using Docker, access and manage the MariaDB database, and update the administrator password for OpenCart.

Prerequisites

Docker Command Basics

  1. docker run: Used to create and start a container.

    • Example: docker run hello-world runs a container from the "hello-world" image.
    • Example: docker run -it ubuntu bash runs an Ubuntu container and opens a bash shell.
  2. docker ps: Lists running containers.

    • Example: docker ps shows all currently running containers.
  3. docker ps -a: Lists all containers, both running and stopped.

@Khnaz35
Khnaz35 / code.py
Created May 20, 2024 11:41
Failed to resolve the URL for 'dashboards:index'.
_keenthemes/urls.py
import logging
from django.urls import include, path
from django.conf import settings
from _keenthemes.views import SystemView
logger = logging.getLogger(__name__)
logger.debug("Loading main URL patterns")