Toundra is a platform that allows managing 3d models.
We recomend to you to use Vagrant + Homestead. You can check the official documentation here.
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_PASSWORDCREATE DATABASE toundra;You may also use phpMyAdmin or MySQL Workbech.
mysql toundra < import.sqlAgain, if you don't want to use CLI, you can use phpMyAdmin or MySQL Workbech to do the import.
git clone https://github.com/razchen/toundra.gitand
cd toundracomposer installnpm installnpm run prodIf you are not using Vagrant + Homestad, run the server:
php artisan serveIf you are using Vagrant + Homestad, go to your configurated domain.