Priki is a project for ES dev technician formation, in the context of the module PRW2.
demo1.mp4
demo2.mp4
| Tools | Version |
|---|---|
| PHP | 8.0.10 |
| Composer | 2.1.9 |
| MariaDB | 10.5.9-MariaDB |
| Npm | 8.3.0 |
You can use the MySQL version equivalent instead of MariaDb.
This is a Laravel project, so there is a lot of them from Laravel that you can see in the composer.json file.
Other dependencies that was manually added can be found in files :
composer.jsonfor composer.package.jsonfor npm.
git clone https://github.com/yannickcpnv/Priki.git && cd Prikicomposer setup- The new
.envfile is a copy of.env.example. Change it for you needs, specially the variablesDB_*. - When you update the file, create the database for the project. The name need to be the same as mentioned in
the
.envfile. composer m:f-s
This is a Laravel project, so you can still use all php artisan commands.
You will now have all the dependencies installed, the public files compiled and a database with some data.
To run the server locally.
composer serveTo compile files with webpack.
npm run dev
or
npm run watchThere is no test for the moment.