Menu

Tree [b80fb9] default tip /
 History

Read Only access


File Date Author Commit
 .github 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 assets 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 bin 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 config 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 docker 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 etc 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 features 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 node_modules 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 public 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 src 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 templates 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 tests 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 themes 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 translations 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 var 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 vendor 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .babelrc 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .dockerignore 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .editorconfig 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .env 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .env.prod 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .env.test 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .env.test_cached 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .eslintrc.js 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 .gitignore 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 CONFLICTS.md 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 Dockerfile 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 LICENSE 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 README.md 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 behat.yml.dist 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 composer.json 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 composer.lock 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 docker-compose.prod.yml 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 docker-compose.yml 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 ecs.php 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 gulpfile.babel.js 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 package-lock.json 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 package.json 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 phpspec.yaml.dist 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 phpstan.neon 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 phpunit.xml.dist 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 rector.php 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 symfony.lock 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 webpack.config.js 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 yarn.lock 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok
 – 2023-10-29 Matthieu Giroux Matthieu Giroux [b80fb9] first not ok

Read Me

Sylius Standard Edition

This is Sylius Standard Edition repository for starting new projects.

About

Sylius is the first decoupled eCommerce framework based on Symfony and Doctrine.
The highest quality of code, strong testing culture, built-in Agile (BDD) workflow and exceptional flexibility make it the best solution for application tailored to your business requirements.
Enjoy being an eCommerce Developer again!

Powerful REST API allows for easy integrations and creating unique customer experience on any device.

We're using full-stack Behavior-Driven-Development, with phpspec and Behat

Documentation

Documentation is available at docs.sylius.com.

Installation

Traditional

$ wget http://getcomposer.org/composer.phar
$ php composer.phar create-project sylius/sylius-standard project
$ cd project
$ yarn install
$ yarn build
$ php bin/console sylius:install
$ symfony serve
$ open http://localhost:8000/

For more detailed instruction please visit installation chapter in our docs.

Docker

Development

Make sure you have installed Docker on your local machine.
Execute docker compose up -d in your favorite terminal and wait some time until the services will be ready. You might want to see docker logs.
Then enter localhost in your browser or execute open localhost in your terminal.

Production

The simplest way to deploy your Sylius store via Docker is via docker-compose.prod.yml configuration file.
To do that you need to install Docker on your VPS and define MYSQL_PASSWORD environment.
Then execute docker compose -f docker-compose.prod.yml up -d command in your terminal. The MYSQL_PASSWORD env will be automatically
applied to the rest of the config.

When using a Virtual Private Server (VPS) we recommend having at least 2GB of RAM memory

Quick deploy:

curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh

export MYSQL_PASSWORD=SLyPJLaye7

docker compose -f docker-compose.prod.yml up -d
docker compose -f docker-compose.prod.yml exec php bin/console sylius:fixtures:load --no-interaction

Troubleshooting

If something goes wrong, errors & exceptions are logged at the application level:

$ tail -f var/log/prod.log
$ tail -f var/log/dev.log

Contributing

Would like to help us and build the most developer-friendly eCommerce framework? Start from reading our Contribution Guide!

Stay Updated

If you want to keep up with the updates, follow the official Sylius account on Twitter and like us on Facebook.

Bug Tracking

If you want to report a bug or suggest an idea, please use GitHub issues.

Community Support

Get Sylius support on Slack, Forum or Stack Overflow.

MIT License

Sylius is completely free and released under the MIT License.

Authors

Sylius was originally created by Paweł Jędrzejewski.
See the list of contributors from our awesome community.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.