-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from itsharppro/dev
- Loading branch information
Showing
35 changed files
with
2,143 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Laravel CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.2' | ||
extensions: mbstring, sqlite, pdo, pdo_sqlite, bcmath | ||
coverage: none | ||
|
||
- name: Cache Composer dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: vendor | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-progress --prefer-dist --optimize-autoloader | ||
|
||
- name: Create .env file | ||
run: | | ||
cp .env.example .env | ||
- name: Generate application key | ||
run: php artisan key:generate | ||
|
||
- name: Run migrations | ||
run: php artisan migrate --force | ||
|
||
- name: Run tests | ||
run: vendor/bin/phpunit --testdox | ||
|
||
- name: Install Node.js and build assets | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
- run: npm install && npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
|
||
|
||
=> FREE HTML TEMPLATE LICENSE BY HTML Codex | ||
|
||
All free HTML templates by HTML Codex are licensed under a Creative Commons Attribution 4.0 International License which means you are not allowed to remove the author�s credit link/attribution link/backlink. | ||
|
||
When you download or use our free HTML templates, it will attribute the following conditions. | ||
|
||
|
||
=> YOU ARE ALLOWED | ||
|
||
1. You are allowed to use for your personal and commercial purposes. | ||
|
||
2. You are allowed to modify/customize however you like. | ||
|
||
3. You are allowed to convert/port for use for any CMS. | ||
|
||
4. You are allowed to share/distribute under the HTML Codex brand name. | ||
|
||
5. You are allowed to put a screenshot or a link on your blog posts or any other websites. | ||
|
||
|
||
=> YOU ARE NOT ALLOWED | ||
|
||
1. You are not allowed to remove the author�s credit link/attribution link/backlink without purchasing Credit Removal License ( https://htmlcodex.com/credit-removal ). | ||
|
||
2. You are not allowed to sell, resale, rent, lease, license, or sub-license. | ||
|
||
3. You are not allowed to upload on your template websites or template collection websites or any other third party websites without our permission. | ||
|
||
|
||
=> If the template contains premium stock photos which are only for demo purposes and not distributed with the template. You need to purchase them separately from the corresponding stock photo website. You are responsible for adhering to the original license of them if necessary. | ||
|
||
|
||
=> This license can be terminated if you breach any of these conditions. | ||
|
||
|
||
=> PURCHASE CREDIT REMOVAL LICENSE ( https://htmlcodex.com/credit-removal ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.