exchange
[WARNING: Under development]
An Open Source Exchange, made with Laravel (PHP) and Vue (JS)
TODO 😄
Dependencies
To run this in your local environment, you will need to have previously installed:
- php >= 7.1.3
- composer
- npm
- a database like sqlite, mysql or mariadb for example
How to run locally
-
On the root of the project, run
composer install
to install dependencies fromcomposer.json
. -
Create a database, run
cp .env.example .env
and change the database settings. -
Run
php artisan key:generate
. -
Run
php artisan migrate:fresh --seed
. -
Run
npm install
to install the dependencies frompackage.json
. -
Run
npm dev
ornpm prod
to generate the CSS and JS. -
Run
php artisan serve
to start the laravel server. -
Access http://localhost:8000 in your browser.
-
That's all folks! 😄