Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
qapris authored Jun 17, 2023
1 parent 9c0784a commit cdc5580
Show file tree
Hide file tree
Showing 9 changed files with 5,271 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/Gruntfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
module.exports = function(grunt) {
grunt.initConfig({
sass: {
options: {
includePaths: ['node_modules/bootstrap-sass/assets/stylesheets']
},
dist: {
options: {
outputStyle: 'compressed'
},
files: [{
'public/assets/css/site.min.css': 'public/assets/scss/main.scss', /* 'All main SCSS' */
}]
}
},
uglify: {
my_target: {
files: {
'public/assets/bundles/libscripts.bundle.js': ['public/assets/vendor/jquery/jquery-3.3.1.min.js','public/assets/vendor/bootstrap/js/popper.min.js','public/assets/vendor/bootstrap/js/bootstrap.js'], /* main js*/
'public/assets/bundles/vendorscripts.bundle.js': ['public/assets/vendor/metisMenu/metisMenu.js','public/assets/vendor/jquery-slimscroll/jquery.slimscroll.min.js','public/assets/vendor/bootstrap-progressbar/js/bootstrap-progressbar.min.js','public/assets/vendor/jquery-sparkline/js/jquery.sparkline.min.js','public/assets/vendor/particlesjs/particles.min.js'], /* coman js*/

'public/assets/bundles/mainscripts.bundle.js':['public/assets/js/common.js','public/assets/js/pages/particlesjs.js'], /*coman js*/

'public/assets/bundles/c3.bundle.js': ['public/assets/vendor/c3/c3.min.js','public/assets/vendor/c3/d3.v3.min.js'], /* c 3 chart js*/
'public/assets/bundles/morrisscripts.bundle.js': ['public/assets/vendor/raphael/raphael.min.js','public/assets/vendor/morrisjs/morris.js'], /* Morris Plugin Js */
'public/assets/bundles/knob.bundle.js': ['public/assets/vendor/jquery-knob/jquery.knob.min.js'], /* knob js*/
'public/assets/bundles/chartist.bundle.js':['public/assets/vendor/chartist/js/chartist.min.js','public/assets/vendor/chartist-plugin-tooltip/chartist-plugin-tooltip.min.js','public/assets/vendor/chartist-plugin-axistitle/chartist-plugin-axistitle.min.js','public/assets/vendor/chartist-plugin-legend-latest/chartist-plugin-legend.js','public/assets/vendor/chartist/Chart.bundle.js'], /*chartist js*/
'public/assets/bundles/flotscripts.bundle.js': ['public/assets/vendor/flot-charts/jquery.flot.js','public/assets/vendor/flot-charts/jquery.flot.resize.js','public/assets/vendor/flot-charts/jquery.flot.pie.js','public/assets/vendor/flot-charts/jquery.flot.categories.js','public/assets/vendor/flot-charts/jquery.flot.time.js'], /* Flot Chart js*/

'public/assets/bundles/lightgallery.bundle.js': ['public/assets/vendor/light-gallery/js/lightgallery-all.min.js','public/assets/vendor/light-gallery/js/mousewheel.min.js'], /* Morris Plugin Js */
'public/assets/bundles/jvectormap.bundle.js': ['public/assets/vendor/jvectormap/jquery-jvectormap-2.0.3.min.js','public/assets/vendor/jvectormap/jquery-jvectormap-world-mill-en.js','public/assets/vendor/jvectormap/jquery-jvectormap-in-mill.js','public/assets/vendor/jvectormap/jquery-jvectormap-us-aea-en.js'], /* jvectormap js*/
'public/assets/bundles/fullcalendarscripts.bundle.js': ['public/assets/vendor/fullcalendar/moment.min.js','public/assets/vendor/fullcalendar/fullcalendar.js'], /* calender page js */
'public/assets/bundles/datatablescripts.bundle.js': ['public/assets/vendor/jquery-datatable/jquery.dataTables.min.js','public/assets/vendor/jquery-datatable/dataTables.bootstrap4.min.js'], /* Jquery DataTable Plugin Js */

'public/assets/bundles/markdown.bundle.js': ['public/assets/vendor/markdown/markdown.js','public/assets/vendor/to-markdown/to-markdown.js','public/assets/vendor/bootstrap-markdown/bootstrap-markdown.js'],
}
}
}
});
grunt.loadNpmTasks("grunt-sass");
grunt.loadNpmTasks('grunt-contrib-uglify');

grunt.registerTask("buildcss", ["sass"]);
grunt.registerTask("buildjs", ["uglify"]);
};
53 changes: 53 additions & 0 deletions .github/workflows/artisan
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
#!/usr/bin/env php
<?php

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any our classes "manually". Feels great to relax.
|
*/

require __DIR__.'/vendor/autoload.php';

$app = require_once __DIR__.'/bootstrap/app.php';

/*
|--------------------------------------------------------------------------
| Run The Artisan Application
|--------------------------------------------------------------------------
|
| When we run the console application, the current CLI command will be
| executed in this console and the response sent back to a terminal
| or another output device for the developers. Here goes nothing!
|
*/

$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);

$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
);

/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| Once Artisan has finished running, we will fire off the shutdown events
| so that any final work may be done by the application before we shut
| down the process. This is the last thing to happen to the request.
|
*/

$kernel->terminate($input, $status);

exit($status);
62 changes: 62 additions & 0 deletions .github/workflows/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^7.1.3",
"fideloper/proxy": "^4.0",
"laravel/framework": "5.7.*",
"laravel/tinker": "^1.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^2.0",
"phpunit/phpunit": "^7.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}
Loading

0 comments on commit cdc5580

Please sign in to comment.