43 lines
1.1 KiB
Markdown
43 lines
1.1 KiB
Markdown
# Perceptron and neuronal networks
|
|
|
|
Using Laravel and Vue JS
|
|
|
|
## Installation
|
|
|
|
1. Install PHP, Composer and NodeJs
|
|
- With Herd
|
|
<https://herd.laravel.com/windows>
|
|
|
|
- Using a single command from the [Laravel installation page](https://laravel.com/docs/12.x/installation)
|
|
|
|
```powershell
|
|
# Run as administrator...
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://php.new/install/windows/8.4'))
|
|
```
|
|
|
|
- Manually :
|
|
1. PHP
|
|
<https://www.php.net/downloads.php>
|
|
2. Composer
|
|
<https://getcomposer.org/download/>
|
|
3. NodeJs (Node + NPM)
|
|
<https://nodejs.org/en/download>
|
|
|
|
2. Install dependencies
|
|
|
|
```shell
|
|
composer install
|
|
```
|
|
|
|
## Running the project
|
|
|
|
There is a script inside `composer.json` that will launch each part of the application in parallel.
|
|
|
|
To run this script :
|
|
|
|
```shell
|
|
composer run dev
|
|
```
|
|
|
|
And go with your favorite browser to <http://127.0.0.1:8000/>
|