-
Notifications
You must be signed in to change notification settings - Fork 17
Installation
Once all the installation requirements have been met, follow the below steps to install Samarium.
git clone https://github.com/oitcode/samarium.git
Rename samarium if you wish to.
mv samarium project_name
cd project_name
mysql> CREATE DATABASE db_name;
mysql> CREATE USER 'db_user_name'@'localhost' IDENTIFIED BY 'use_good_password';
mysql> GRANT ALL PRIVILEGES ON db_name.* TO db_user_name@localhost;
Replace db_name
and db_user_name
to actual db name and db user name.
cp env.example .env
Give correct database name, database user and database password in the .env file.
composer install
npm install
npm run dev
php artisan migrate
php artisan key:generate
php artisan storage:link
php artisan serve
Thats it! If you completed all the steps above, then you can use the application now. To use application dashboard visit url 127.0.0.1:8000/dashboard.
To see the website built visit 127.0.0.1:8000 in browser.
Hope you like it.