1
0
mirror of https://github.com/robonen/metr.git synced 2026-03-20 10:54:41 +00:00
This commit is contained in:
2022-05-23 19:01:04 +07:00
parent fa4a0ed77e
commit 4ae8ba4228
48 changed files with 1747 additions and 328 deletions

12
.idea/metr.iml generated Normal file
View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/backend/app" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/backend/tests" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/backend/storage" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

14
.idea/webResources.xml generated Normal file
View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="WebResourcesPaths">
<contentEntries>
<entry url="file://$PROJECT_DIR$">
<entryData>
<resourceRoots>
<path value="file://$PROJECT_DIR$/backend/resources" />
</resourceRoots>
</entryData>
</entry>
</contentEntries>
</component>
</project>

219
.idea/workspace.xml generated Normal file
View File

@@ -0,0 +1,219 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="c4514c3f-b59d-443f-8151-439baad1fc96" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.editorconfig" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.env.example" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.gitattributes" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.styleci.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Actions/Fortify/CreateNewUser.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Actions/Fortify/PasswordValidationRules.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Actions/Fortify/ResetUserPassword.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Actions/Fortify/UpdateUserPassword.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Actions/Fortify/UpdateUserProfileInformation.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Console/Kernel.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Exceptions/Handler.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Controllers/Controller.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Kernel.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/Authenticate.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/EncryptCookies.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/PreventRequestsDuringMaintenance.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/RedirectIfAuthenticated.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/TrimStrings.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/TrustHosts.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/TrustProxies.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Http/Middleware/VerifyCsrfToken.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Models/User.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Providers/AppServiceProvider.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Providers/AuthServiceProvider.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Providers/BroadcastServiceProvider.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Providers/EventServiceProvider.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Providers/FortifyServiceProvider.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/app/Providers/RouteServiceProvider.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/artisan" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/bootstrap/app.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/bootstrap/cache/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/composer.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/composer.lock" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/app.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/auth.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/broadcasting.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/cache.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/cors.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/database.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/filesystems.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/fortify.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/hashing.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/logging.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/mail.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/queue.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/sanctum.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/services.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/session.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/config/view.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/factories/UserFactory.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/migrations/2014_10_12_000000_create_users_table.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/migrations/2014_10_12_100000_create_password_resets_table.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/migrations/2014_10_12_200000_add_two_factor_columns_to_users_table.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/migrations/2019_08_19_000000_create_failed_jobs_table.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/database/seeders/DatabaseSeeder.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker-compose.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/7.4/Dockerfile" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/7.4/php.ini" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/7.4/start-container" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/7.4/supervisord.conf" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.0/Dockerfile" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.0/php.ini" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.0/start-container" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.0/supervisord.conf" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.1/Dockerfile" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.1/php.ini" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.1/start-container" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/docker/8.1/supervisord.conf" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/lang/en/auth.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/lang/en/pagination.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/lang/en/passwords.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/lang/en/validation.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/package.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/phpunit.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/.htaccess" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/css/app.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/favicon.ico" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/images/intro.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/images/metr.svg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/images/video.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/index.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/js/app.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/js/login.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/js/main_page.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/js/signin.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/logo.svg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/mix-manifest.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/public/robots.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/css/app.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/css/auth.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/css/index.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/1.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/2jpg.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/3.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/4.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/5.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/6.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/image 3 (1).png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/intro.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/location.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/metr.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/metr.svg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/search.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/tell.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/user.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/images/video.jpg" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/js/app.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/js/bootstrap.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/js/login.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/js/main_page.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/js/signin.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/views/auth/login.blade.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/views/auth/register.blade.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/views/layouts/base.blade.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/views/main.blade.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/resources/views/welcome.blade.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/routes/api.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/routes/channels.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/routes/console.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/routes/web.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/app/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/app/public/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/framework/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/framework/cache/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/framework/cache/data/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/framework/sessions/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/framework/testing/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/framework/views/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/storage/logs/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tests/CreatesApplication.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tests/Feature/ExampleTest.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tests/TestCase.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tests/Unit/ExampleTest.php" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/.github/workflows/release.yml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/.gitignore" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/assets/css/login.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/assets/css/signin.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/assets/css/style.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/Stapel/Stapel-Bold.ttf" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/Stapel/Stapel-Bold.woff" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/Stapel/Stapel-Bold.woff2" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/Stapel/stapel-semi-expanded-bold.otf" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/StapelS/Stapel-SemiExpandedBold.ttf" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/StapelS/Stapel-SemiExpandedBold.woff" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/StapelS/Stapel-SemiExpandedBold.woff2" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/fonts/StapelS/style.css" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/index.html" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/login.html" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/tmp/signin.html" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/webpack.mix.js" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/yarn.lock" beforeDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="ComposerSettings">
<pharConfigPath>$PROJECT_DIR$/backend/composer.json</pharConfigPath>
<execution />
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="ProjectId" id="29Z2xWLX6GmHX1PqytT9OyGn78F" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
<property name="nodejs_package_manager_path" value="yarn" />
<property name="vue.rearranger.settings.migration" value="true" />
</component>
<component name="RecentsManager">
<key name="MoveFile.RECENT_KEYS">
<recent name="\\wsl$\Ubuntu\var\www\metr\frontend" />
<recent name="\\wsl$\Ubuntu\var\www\metr" />
</key>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="c4514c3f-b59d-443f-8151-439baad1fc96" name="Changes" comment="" />
<created>1653306533694</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1653306533694</updated>
<workItem from="1653306534835" duration="541000" />
</task>
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
</component>
</project>