Skip to content

alexfer/rgfly

Repository files navigation

RgFly ecommerce solution.

  • (Tailwind theme (dev))
  • (Bootstrap theme (not full compatibility yet))

Requirements:

Docker

1. Clone repository

    $ git clone git@github.com:alexfer/rgfly.git

2. Prepare configuration

You should change database configuration

    $ cd projectdir/
    $ cp .env.dist .env

3. Install dependencies use Composer

Use Composer install to download and install the package.

    $ composer install

4. Creating a database and fill it with data

    $ php bin/console doctrine:database:drop --force
    $ php bin/console doctrine:database:create
    $ php bin/console doctrine:migrations:migrate
    $ php bin/console doctrine:fixtures:load
    $ php bin/console app:functions:import

4. Install JavaScript dependencies & Compile scripts

    $ npm install
    $ npm run (watch|dev|build)
or
    $ yarn install
    $ yarn (watch|dev|build)

Build production:

    $ npm run build

Code of Conduct

I as member, contributor, and leader pledge to make participation in community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation.

Contributing

We welcome contributions to this project, including pull requests and issues (and discussions on existing issues).

If you'd like to contribute code but aren't sure what, the issues list is a good place to start. If you're a first-time code contributor, you may find Github's guide to forking projects helpful.

All contributors (whether contributing code, involved in issue discussions, or involved in any other way) must abide by our code of conduct.