Skip to content

razchen/toundra

Repository files navigation

Toundra

Toundra is a platform that allows managing 3d models.

1 - Enviroment

Make sure that you have installed the next tools:

We recomend to you to use Vagrant + Homestead. You can check the official documentation here.

2 - Database

Rename the .env.example to .env file which should include all the environment variables for your project:

The most important part is the database configuration:

DB_CONNECTION=mysql
DB_HOST=localhost
DB_PORT=3306
DB_DATABASE=toundra
DB_USERNAME=YOUR_USER_NAME
DB_PASSWORD=YOUR_PASSWORD

Login to MySQL and create a database called toundra

CREATE DATABASE toundra;

You may also use phpMyAdmin or MySQL Workbech.

Import the database

mysql toundra < import.sql

Again, if you don't want to use CLI, you can use phpMyAdmin or MySQL Workbech to do the import.

3- Installation

Clone the repository from Github

git clone https://github.com/razchen/toundra.git

and

cd toundra

Run Composer dependencies

composer install

Run NPM dependencies

npm install

Run Webpack

npm run prod

Run the server

If you are not using Vagrant + Homestad, run the server:

php artisan serve

If you are using Vagrant + Homestad, go to your configurated domain.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors