diff --git a/.env.example b/.env.example index 95e5d81..3b8c0d6 100755 --- a/.env.example +++ b/.env.example @@ -1,18 +1,19 @@ APP_ENV=local APP_DEBUG=true APP_KEY=SomeRandomString +APP_URL=YourUrl +DB_CONNECTION=pgsql DB_HOST=localhost -DB_DATABASE=homestead -DB_USERNAME=homestead +DB_PORT=5432 +DB_DATABASE=tethys +DB_USERNAME=trethys_admin DB_PASSWORD=secret CACHE_DRIVER=file -SESSION_DRIVER=file +SESSION_DRIVER=cookie QUEUE_DRIVER=sync +FILESYSTEM_DRIVER=public -MAIL_DRIVER=smtp -MAIL_HOST=mailtrap.io -MAIL_PORT=2525 -MAIL_USERNAME=null -MAIL_PASSWORD=null +SOLR_HOST=solr.host.at +SOLR_CORE=test_data \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..fe8ee21 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +MIT License +----------- + +Copyright (c) 2020, Geologische Bundesanstalt (GBA) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. \ No newline at end of file diff --git a/Repository.code-workspace b/Tethys.code-workspace similarity index 100% rename from Repository.code-workspace rename to Tethys.code-workspace diff --git a/lms.sql b/lms.sql deleted file mode 100644 index 11e3dde..0000000 --- a/lms.sql +++ /dev/null @@ -1,451 +0,0 @@ --- phpMyAdmin SQL Dump --- version 4.4.3 --- http://www.phpmyadmin.net --- --- Host: localhost --- Generation Time: Jul 01, 2015 at 10:43 --- Server version: 5.6.24 --- PHP Version: 5.6.8 - -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET time_zone = "+00:00"; - - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; - --- --- Database: `lms` --- - --- -------------------------------------------------------- - --- --- Table structure for table `books` --- - -CREATE TABLE IF NOT EXISTS `books` ( - `id` int(10) unsigned NOT NULL, - `title` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `author` varchar(100) COLLATE utf8_unicode_ci NOT NULL, - `year` int(4) NOT NULL, - `stock` int(11) NOT NULL, - `category_id` int(10) unsigned NOT NULL, - `shelf_id` int(10) unsigned NOT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `year_id` int(10) unsigned NOT NULL -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `books` --- - -INSERT INTO `books` (`id`, `title`, `author`, `year`, `stock`, `category_id`, `shelf_id`, `created_at`, `updated_at`, `year_id`) VALUES -(1, 'Laravel 5', 'Rahmat Awalludin', 2015, 9, 4, 1, '2015-06-09 07:32:45', '2015-06-10 01:47:18', 0), -(2, 'Angular.Js', 'Mark Zuckerberg', 2014, 6, 4, 3, '2015-06-09 08:06:03', '2015-06-19 10:21:15', 0), -(4, 'Vue.Js', 'Taylor Otwell', 2015, 0, 4, 1, '2015-06-09 08:09:01', '2015-06-09 08:51:31', 0), -(5, 'Be Bold', 'Kingsman', 2000, 0, 5, 5, '2015-06-09 08:23:20', '2015-06-11 00:50:22', 0), -(6, 'OOP with PHP', 'Richard Stallman', 1999, 7, 4, 5, '2015-06-19 10:18:06', '2015-06-19 10:20:33', 0), -(7, 'Seputar Antariksa', 'NASA', 2000, 1, 1, 3, '2015-06-19 10:18:48', '2015-06-19 10:22:31', 0), -(8, 'Cinderella', 'Unyil', 2000, 1, 6, 4, '2015-06-19 10:19:47', '2015-06-19 10:19:47', 0), -(9, 'Atom and Neutron', 'Dr. Zeuz', 1999, 2, 1, 3, '2015-06-19 11:00:47', '2015-06-19 11:00:47', 0); - --- -------------------------------------------------------- - --- --- Table structure for table `categories` --- - -CREATE TABLE IF NOT EXISTS `categories` ( - `id` int(10) unsigned NOT NULL, - `category` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `categories` --- - -INSERT INTO `categories` (`id`, `category`, `created_at`, `updated_at`) VALUES -(1, 'Sains', '2015-06-09 00:17:51', '2015-06-09 01:01:36'), -(4, 'Computer', '2015-06-09 01:07:41', '2015-06-09 01:07:41'), -(5, 'Life Lesson', '2015-06-09 01:07:50', '2015-06-09 01:07:50'), -(6, 'Fairy Tail', '2015-06-09 01:08:14', '2015-06-09 01:08:14'); - --- -------------------------------------------------------- - --- --- Table structure for table `fines` --- - -CREATE TABLE IF NOT EXISTS `fines` ( - `id` int(2) NOT NULL, - `days` int(11) NOT NULL, - `fines` int(11) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `fines` --- - -INSERT INTO `fines` (`id`, `days`, `fines`, `created_at`, `updated_at`) VALUES -(1, 5, 7000, '2015-06-09 02:27:33', '2015-06-19 11:27:00'); - --- -------------------------------------------------------- - --- --- Table structure for table `migrations` --- - -CREATE TABLE IF NOT EXISTS `migrations` ( - `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `batch` int(11) NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `migrations` --- - -INSERT INTO `migrations` (`migration`, `batch`) VALUES -('2014_10_12_000000_create_users_table', 1), -('2014_10_12_100000_create_password_resets_table', 1), -('2015_06_09_041120_create_categories_table', 1), -('2015_06_09_041145_create_shelves_table', 1), -('2015_06_09_041212_create_fines_table', 1), -('2015_06_09_041219_create_periodes_table', 1), -('2015_06_09_041233_create_students_table', 1), -('2015_06_09_041242_create_books_table', 1), -('2015_06_09_041254_create_transactions_table', 1), -('2015_06_09_151248_create_years_table', 2), -('2015_06_18_030231_create_lac', 3); - --- -------------------------------------------------------- - --- --- Table structure for table `password_resets` --- - -CREATE TABLE IF NOT EXISTS `password_resets` ( - `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- -------------------------------------------------------- - --- --- Table structure for table `periodes` --- - -CREATE TABLE IF NOT EXISTS `periodes` ( - `id` int(2) NOT NULL, - `days` int(11) NOT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `periodes` --- - -INSERT INTO `periodes` (`id`, `days`, `created_at`, `updated_at`) VALUES -(1, 100, '2015-06-09 02:59:49', '2015-06-10 08:14:27'); - --- -------------------------------------------------------- - --- --- Table structure for table `roles` --- - -CREATE TABLE IF NOT EXISTS `roles` ( - `id` int(10) unsigned NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `roles` --- - -INSERT INTO `roles` (`id`, `name`, `created_at`, `updated_at`) VALUES -(1, 'admin', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), -(2, 'user', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); - --- -------------------------------------------------------- - --- --- Table structure for table `role_user` --- - -CREATE TABLE IF NOT EXISTS `role_user` ( - `role_id` int(10) unsigned NOT NULL, - `user_id` int(10) unsigned NOT NULL -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `role_user` --- - -INSERT INTO `role_user` (`role_id`, `user_id`) VALUES -(1, 1), -(2, 2); - --- -------------------------------------------------------- - --- --- Table structure for table `shelves` --- - -CREATE TABLE IF NOT EXISTS `shelves` ( - `id` int(10) unsigned NOT NULL, - `shelf` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `shelves` --- - -INSERT INTO `shelves` (`id`, `shelf`, `created_at`, `updated_at`) VALUES -(1, 'A', '2015-06-09 01:45:37', '2015-06-09 01:58:05'), -(3, 'B', '2015-06-09 03:10:53', '2015-06-09 03:10:53'), -(4, 'C', '2015-06-09 03:10:57', '2015-06-09 03:10:57'), -(5, 'D', '2015-06-09 03:11:00', '2015-06-09 03:11:00'); - --- -------------------------------------------------------- - --- --- Table structure for table `students` --- - -CREATE TABLE IF NOT EXISTS `students` ( - `id` int(10) unsigned NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `registered_at` int(11) NOT NULL, - `borrow` int(11) NOT NULL DEFAULT '0', - `status` tinyint(1) NOT NULL DEFAULT '1', - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `students` --- - -INSERT INTO `students` (`id`, `name`, `registered_at`, `borrow`, `status`, `created_at`, `updated_at`) VALUES -(1, 'Pramesti Hatta K.', 1432080000, 1, 1, '2015-06-09 06:26:04', '2015-06-19 10:21:15'), -(2, 'Chelsea Islan', 1433948676, 1, 1, '2015-06-10 07:50:57', '2015-06-11 00:50:23'), -(3, 'John Mayer', 1434734048, 0, 1, '2015-06-19 10:14:08', '2015-06-19 10:14:08'), -(4, 'Emma Watson', 1434734067, 1, 1, '2015-06-19 10:14:27', '2015-06-19 10:20:33'), -(5, 'Scarlet Johansson', 1434734082, 0, 1, '2015-06-19 10:14:42', '2015-06-19 10:14:42'), -(6, 'Rachmanita', 1434734225, 1, 1, '2015-06-19 10:17:05', '2015-06-19 10:22:31'); - --- -------------------------------------------------------- - --- --- Table structure for table `transactions` --- - -CREATE TABLE IF NOT EXISTS `transactions` ( - `id` int(10) unsigned NOT NULL, - `student_id` int(10) unsigned NOT NULL, - `book_id` int(10) unsigned NOT NULL, - `borrowed_at` int(11) NOT NULL, - `returned_at` int(11) DEFAULT NULL, - `fines` int(11) DEFAULT NULL, - `status` tinyint(1) NOT NULL DEFAULT '0', - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `transactions` --- - -INSERT INTO `transactions` (`id`, `student_id`, `book_id`, `borrowed_at`, `returned_at`, `fines`, `status`, `created_at`, `updated_at`) VALUES -(11, 1, 1, 1433030400, 0, 105000, 0, '2015-06-09 23:31:53', '2015-06-19 23:37:56'), -(12, 1, 5, 1433926647, 1433926960, 0, 1, '2015-06-10 01:57:27', '2015-06-10 02:02:40'), -(13, 1, 2, 1432080000, 1434734475, 125000, 1, '2015-06-10 01:58:41', '2015-06-19 10:21:15'), -(14, 1, 5, 1433927036, 1433927038, 0, 1, '2015-06-10 02:03:38', '2015-06-10 02:03:58'), -(16, 2, 5, 1434009022, NULL, 28000, 0, '2015-06-11 00:50:22', '2015-06-20 08:07:07'), -(17, 4, 6, 1434734432, NULL, 0, 0, '2015-06-19 10:20:32', '2015-06-19 10:20:33'), -(18, 6, 7, 1434734550, NULL, 0, 0, '2015-06-19 10:22:30', '2015-06-19 10:22:31'); - --- -------------------------------------------------------- - --- --- Table structure for table `users` --- - -CREATE TABLE IF NOT EXISTS `users` ( - `id` int(10) unsigned NOT NULL, - `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, - `password` varchar(60) COLLATE utf8_unicode_ci NOT NULL, - `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, - `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', - `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; - --- --- Dumping data for table `users` --- - -INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES -(1, 'Hasan Doha', 'doha.physics.du@gmail.com', '$2y$10$j7YDyJdvfsM99/0XKZ/8w.Cw8BAAR/S1eYQaOLsP.Ozfi9Lg6heoC', 'IM5FXwueZ9kOKkLoUDkHmOLNkhru91X4NLaLKgQQmyZANPwcIhwLIRd4kb3y', '2015-06-08 23:21:52', '2015-06-20 08:11:04'), -(2, 'Lost Stars', 'loststars@gmail.com', '$2y$10$j7YDyJdvfsM99/0XKZ/8w.Cw8BAAR/S1eYQaOLsP.Ozfi9Lg6heoC', 'xz35vIdRBpE91ka0E9lLil1XH575cCfvJ4OhgycLdw5QYV18arp5COtSBj7z', '2015-06-17 20:24:39', '2015-06-17 20:34:49'); - --- --- Indexes for dumped tables --- - --- --- Indexes for table `books` --- -ALTER TABLE `books` - ADD PRIMARY KEY (`id`), - ADD KEY `books_category_id_foreign` (`category_id`), - ADD KEY `books_shelf_id_foreign` (`shelf_id`); - --- --- Indexes for table `categories` --- -ALTER TABLE `categories` - ADD PRIMARY KEY (`id`); - --- --- Indexes for table `fines` --- -ALTER TABLE `fines` - ADD PRIMARY KEY (`id`); - --- --- Indexes for table `password_resets` --- -ALTER TABLE `password_resets` - ADD KEY `password_resets_email_index` (`email`), - ADD KEY `password_resets_token_index` (`token`); - --- --- Indexes for table `periodes` --- -ALTER TABLE `periodes` - ADD PRIMARY KEY (`id`); - --- --- Indexes for table `roles` --- -ALTER TABLE `roles` - ADD PRIMARY KEY (`id`); - --- --- Indexes for table `role_user` --- -ALTER TABLE `role_user` - ADD PRIMARY KEY (`role_id`,`user_id`); - --- --- Indexes for table `shelves` --- -ALTER TABLE `shelves` - ADD PRIMARY KEY (`id`); - --- --- Indexes for table `students` --- -ALTER TABLE `students` - ADD PRIMARY KEY (`id`); - --- --- Indexes for table `transactions` --- -ALTER TABLE `transactions` - ADD PRIMARY KEY (`id`), - ADD KEY `transactions_student_id_foreign` (`student_id`), - ADD KEY `transactions_book_id_foreign` (`book_id`); - --- --- Indexes for table `users` --- -ALTER TABLE `users` - ADD PRIMARY KEY (`id`), - ADD UNIQUE KEY `users_email_unique` (`email`); - --- --- AUTO_INCREMENT for dumped tables --- - --- --- AUTO_INCREMENT for table `books` --- -ALTER TABLE `books` - MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=10; --- --- AUTO_INCREMENT for table `categories` --- -ALTER TABLE `categories` - MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7; --- --- AUTO_INCREMENT for table `fines` --- -ALTER TABLE `fines` - MODIFY `id` int(2) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; --- --- AUTO_INCREMENT for table `periodes` --- -ALTER TABLE `periodes` - MODIFY `id` int(2) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2; --- --- AUTO_INCREMENT for table `roles` --- -ALTER TABLE `roles` - MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; --- --- AUTO_INCREMENT for table `shelves` --- -ALTER TABLE `shelves` - MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6; --- --- AUTO_INCREMENT for table `students` --- -ALTER TABLE `students` - MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7; --- --- AUTO_INCREMENT for table `transactions` --- -ALTER TABLE `transactions` - MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=19; --- --- AUTO_INCREMENT for table `users` --- -ALTER TABLE `users` - MODIFY `id` int(10) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3; --- --- Constraints for dumped tables --- - --- --- Constraints for table `books` --- -ALTER TABLE `books` - ADD CONSTRAINT `books_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`), - ADD CONSTRAINT `books_shelf_id_foreign` FOREIGN KEY (`shelf_id`) REFERENCES `shelves` (`id`); - --- --- Constraints for table `transactions` --- -ALTER TABLE `transactions` - ADD CONSTRAINT `transactions_book_id_foreign` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`), - ADD CONSTRAINT `transactions_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `students` (`id`); - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; \ No newline at end of file diff --git a/public/css/style.css b/public/css/style.css index d911c27..7d1cd7a 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -615,8 +615,9 @@ section.normal { margin-right: 0; } .clients li img { - max-width: 100%; - height: auto; + /* max-width: 100%; */ + width:330px ; + height: auto; display: block; -webkit-filter: greyscale(100%); -moz-filter: greyscale(100%); diff --git a/public/images/clients/logo_gba.png b/public/images/clients/logo_gba.png index 2c58d66..3b03115 100644 Binary files a/public/images/clients/logo_gba.png and b/public/images/clients/logo_gba.png differ diff --git a/readme.md b/readme.md index 7a6f5a8..073fecd 100755 --- a/readme.md +++ b/readme.md @@ -1,3 +1,72 @@ -##TETHYS +# ![](/public/images/favicon/favicon-32x32.png) TETHYS + +TETHYS - Data Publisher for Geoscience Austria is a digital data library and a data publisher for earth system science. Data can be georeferenced in time (date/time) and space (latitude, longitude, depth/height). + +---------- + +# Getting Started + +These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. + +## Installation + +Please check the official laravel installation guide for server requirements before you start. [Official Documentation](https://laravel.com/docs/6.x/installation#installation) + + +Clone the repository + + git clone git@github.com:geolba/tethys.git + +Switch to the repo folder + + cd tethys-app + +Install all the dependencies using composer + + composer install --optimize-autoloader --no-dev + +Copy the example env file and make the required configuration changes in the .env file + + cp .env.example .env + +Generate a new application key + + php artisan key:generate + +Run the database migrations (**Set the database connection in .env before migrating**) + + php artisan migrate + +Grant folder permissions (**Set the database connection in .env before migrating**) + + sudo chgrp -R www-data storage bootstrap/cache + sudo chmod -R ug+rwx storage bootstrap/cache + +Start the local development server + + php artisan serve + + +## Environment variables + +- .env - Environment variables can be set in this file + +***Note*** : You can quickly set the database information, the solr connection string and other variables in this file and have the application fully working. + +---------- + +## Versioning + +For the versions available, see the [tags on this repository](https://github.com/geolba/tethys/tags). + +## Authors + +* **Arno Kaimbacher** - *Initial work* + +See also the list of [contributors](https://github.com/geolba/tethys/contributors) who participated in this project. + +## License + +This project is licensed under the MIT License - see the [license](LICENSE) file for details + -Research Data Repository build with Laravel 5.5