Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 759 Bytes

README.org

File metadata and controls

28 lines (25 loc) · 759 Bytes

LatsaVueatifulCode DM2.0 Laravel + Vue

Generating CSV

node ./generate_test_data.js

Importing CSV to MySQL database

csv2sql all laravel.mailing_lists -i ./test_data_100k.csv  -o test_data_100k.sql
mariadb-import laravel mailing_lists ./test_data_100k.sql

Starting Server Locally

# if you haven't yet you must also migrate:
# php artisan migrate

php artisan serve

You should then be able to browse to http://localhost:8000/.

Development

If you wish to make any changes to the Vue UI it’s recommended to run

npm run watch

to watch for changes and compile them.

Running Tests

FIXME: