You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- mysql -e "create database phpofby DEFAULT CHARACTER SET utf8; grant all on phpofby.* to 'symfony'@'localhost' identified by 'symfony';" -uroot
28
+
- mysql -e "CREATE DATABASE phpofby DEFAULT CHARACTER SET utf8; CREATE USER 'symfony'@'localhost' identified by 'symfony'; GRANT ALL ON phpofby.* TO 'symfony'@'localhost'" -uroot
Copy file name to clipboardExpand all lines: Resources/doc/01-installation-dev.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,8 +69,8 @@ Restart ``php-fpm`` using command ``sudo service php7.4-fpm restart``.
69
69
70
70
Install node.js and Yarn
71
71
~~~~~~~~~~~~~~~~~~~~~~~~
72
-
Here we are using version 12 of Node.js.
73
-
We need to add repo via ``curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -``. After that install node via ``sudo apt-get install -y nodejs``.
72
+
Here we are using version 18 of Node.js.
73
+
We need to add repo via ``curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -``. After that install node via ``sudo apt-get install -y nodejs``.
0 commit comments