Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 977 Bytes

README.md

File metadata and controls

50 lines (32 loc) · 977 Bytes

VueJsGui2

Projet VueJs du cours GUI2 au CPNV

Set up development

I. Clone the repository

Clone the repository with

git clone https://github.com/Dardanboy/VueJsGui2.git

II. Install dependencies

Go to your project folder and run the installation of laravel dependencies.

cd /path/to/your/local/clone/of/VueJsGui2

# install composer dependencies
composer install

# install the npm dependencies
npm i

III. Set up .env

When the dependencies are installed you must duplicate the .env.example file and rename it to .env.

IV. Set up your application key

Finally, for laravel to work properly, you must generate the application key.

cd /path/to/your/local/clone/of/VueJsGui2

php artisan key:generate

V. Launch the web server

php artisan serve

VI. Access the webpage

Access localhost:8000 By Default (has to be change to another Port if already Used)

VII. Enjoy!