Skip to content

Latest commit

 

History

History
33 lines (28 loc) · 529 Bytes

README.md

File metadata and controls

33 lines (28 loc) · 529 Bytes

Color picker

Make sure to have installed:

  • Composer
  • SymfonyCLI
  • MySQL
  • PHP
  • NodeJs
  • NPM

To run the client:

cd client
npm i --force 
npm run dev

The --force is required because I used a react numeric input component with an older react version.

To run the server:

cd server
composer install

Adjust the DATABASE_URL in the .env file in the server folder.

Then run:

php bin/console doctrine:database:create
php bin/console doctrine:migrations:migrate
symfony server:start

Have fun!