{"id":28188793,"url":"https://github.com/bartoll/prestashop-standard-edition","last_synced_at":"2026-04-25T12:34:00.373Z","repository":{"id":56950475,"uuid":"450279187","full_name":"bartoll/prestashop-standard-edition","owner":"bartoll","description":"[Standard Edition] The open source Ecommerce - please raise issues in https://github.com/PrestaShop/PrestaShop/issues","archived":false,"fork":false,"pushed_at":"2022-01-24T21:03:38.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-11-13T11:53:16.314Z","etag":null,"topics":["cms","ecommerce","ecommerce-framework","ecommerce-platform","php","php-framework","prestashop","starter-kit"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bartoll.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-20T22:35:29.000Z","updated_at":"2022-01-21T11:45:55.000Z","dependencies_parsed_at":"2022-08-21T08:20:57.350Z","dependency_job_id":null,"html_url":"https://github.com/bartoll/prestashop-standard-edition","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartoll%2Fprestashop-standard-edition","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartoll%2Fprestashop-standard-edition/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartoll%2Fprestashop-standard-edition/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartoll%2Fprestashop-standard-edition/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bartoll","download_url":"https://codeload.github.com/bartoll/prestashop-standard-edition/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254501543,"owners_count":22081530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cms","ecommerce","ecommerce-framework","ecommerce-platform","php","php-framework","prestashop","starter-kit"],"created_at":"2025-05-16T09:11:41.729Z","updated_at":"2026-04-25T12:33:55.329Z","avatar_url":"https://github.com/bartoll.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"Prestashop Standard Edition\n=====================================\n\nWelcome to Bartoll's repository.\n\nThis repository is used to create a new Ecommerce project based on Prestashop framework.\n\nIf you want to contribute to the Prestashop (and we will be pleased if you do!), you can fork the repository https://github.com/PrestaShop/PrestaShop and submit a pull request.\n\nInstallation instructions\n-------------------------\n\n## Requirements\nRead this page in documentation https://devdocs.prestashop.com/1.7/basics/installation/system-requirements/\n\n## Creating a new project and getting Prestashop release package\n```bash\n$ composer create-project bartoll/prestashop-standard-edition {project_name} dev-main\n$ cd {project_name}\n$ composer get-presta {presta_version}\n```\nReplace all placeholders with proper values ex. {presta_version} --\u003e 1.7.8.2\n\n## Installing an application with command line\n```bash\n$ php install/index_cli.php \\\n\t--step=database,fixtures,theme,modules,addons_modules \\\n\t--language=pl \\\n\t--timezone='Europe/Warsaw' \\\n\t--domain='{domain}' \\\n\t--db_server=127.0.0.1 \\\n\t--db_user={db_user} \\\n\t--db_password={db_pass} \\\n\t--db_name={db_name} \\\n\t--db_clear=1 \\\n\t--name='Prestashop' \\\n\t--activity=0 \\\n\t--country=pl \\\n\t--firstname='{firstname}' \\\n\t--lastname='{lastname}' \\\n\t--password='{password}' \\\n\t--email='{email}' \\\n\t--theme='classic' \\\n\t--ssl=1 \\\n\t--rewrite=1 \\\n\t--fixtures=0\n```\nMore details: https://doc.prestashop.com/display/PS17/Installing+PrestaShop+using+the+command-line+script\n\n\nDevelopment a new project\n-------------------------\n\n## How to work with GIT?\nYou will only track changes to those files that are not the core of Prestashop. This means custom or third-party themes and modules, and any files in the \"overrides\" folder.\nYou should modify the .gitignore file every time you want to add any module or theme to the tracked files.\n\nIf you need to modify core files, you can add these files to GIT with the special '--forced' argument.\nFirst, add and commit the original files with no changes. Second, add and commit the changed files. \n```bash\ngit add --force my/ignore/file.foo\ngit commit -m \"Add this file despite being ignored\"\n```\n\n## How to configure PrestaShop to work with another domain?\nYou can transfer your database between different environments (e.g. localhost -\u003e production).\nFirst, install the application from scratch as described above.\nDuring this process, Prestashop will download all 'module addons' (cannot be installed with the composer).\nThen restore and replace the existing database with your \"dump\" file.\nThird, make the necessary changes to:\n1. files:\n```\n/app/config/parameters.php\n```\n2. database:\n```\nUPDATE ps_configuration SET value='new.prestashop.local' WHERE name='PS_SHOP_DOMAIN' LIMIT 1;\n\nUPDATE ps_configuration SET value='new.prestashop.local' WHERE name='PS_SHOP_DOMAIN_SSL' LIMIT 1;\n\nUPDATE ps_shop_url SET domain='new.prestashop.local', domain_ssl='new.prestashop.local' WHERE id_shop_url=1 LIMIT 1;\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbartoll%2Fprestashop-standard-edition","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbartoll%2Fprestashop-standard-edition","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbartoll%2Fprestashop-standard-edition/lists"}