-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add amigor #30
add amigor #30
Conversation
CI Failure Feedback 🧐(Checks updated until commit 42dcbf9)
✨ CI feedback usage guide:The CI feedback tool (
In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:
where Configuration options
See more information about the |
8dffcd1
to
b0e37fd
Compare
26304c4
to
6b0896e
Compare
6b0896e
to
2c47837
Compare
PR Reviewer Guide 🔍
|
PR Code Suggestions ✨
|
…build, since there are changes in the Dockerfile
30fae28
to
197c1c3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tested on pull preview and locally
ssh @ |
User description
Reusable workflow references have to be changed to the main branch once the corresponding PR is merged in the github-workflows repo.
PR Type
Enhancement, Configuration changes, Tests, Documentation
Description
Changes walkthrough 📝
10 files
Controller.php
Add base Controller class
amigor/app/Http/Controllers/Controller.php
Controller
class in theApp\Http\Controllers
namespace.User.php
Add User model with Transmorpher media support
amigor/app/Models/User.php
User
model implementingHasTransmorpherMediaInterface
.email_verified_at
andpassword
.transmorpherImages
andtransmorpherVideos
arrays.AppServiceProvider.php
Add AppServiceProvider to enforce morph map
amigor/app/Providers/AppServiceProvider.php
AppServiceProvider
to enforce morph map forUser
model.index.php
Add public index file for Laravel bootstrap
amigor/public/index.php
welcome.blade.php
Add welcome view with Transmorpher media dropzones
amigor/resources/views/welcome.blade.php
console.php
Add console routes file with example command
amigor/routes/console.php
web.php
Add web routes file with welcome route
amigor/routes/web.php
app.js
Add JavaScript entry point file
amigor/resources/js/app.js
bootstrap.js
Add JavaScript bootstrap file with Axios configuration
amigor/resources/js/bootstrap.js
artisan
Add artisan CLI entry point for Laravel
amigor/artisan
38 files
app.php
Configure application bootstrapping
amigor/bootstrap/app.php
exceptions handling.
providers.php
Register AppServiceProvider
amigor/bootstrap/providers.php
AppServiceProvider
to the list of providers.app.php
Add application configuration settings
amigor/config/app.php
debug mode, URL, timezone, locale, encryption key, and maintenance
mode.
auth.php
Add authentication configuration settings
amigor/config/auth.php
providers, and password reset options.
cache.php
Add cache configuration settings
amigor/config/cache.php
stores, and key prefix.
database.php
Add database configuration settings
amigor/config/database.php
connections for various database systems, migration repository table,
and Redis settings.
filesystems.php
Add filesystem configuration settings
amigor/config/filesystems.php
and symbolic links.
logging.php
Add logging configuration settings
amigor/config/logging.php
deprecations log channel, and log channels.
mail.php
Add mail configuration settings
amigor/config/mail.php
configurations, and global "from" address.
queue.php
Add queue configuration settings
amigor/config/queue.php
connections for various queue backends, job batching, and failed queue
jobs.
services.php
Add third-party services configuration settings
amigor/config/services.php
SES, Resend, and Slack.
session.php
Add session configuration settings
amigor/config/session.php
encryption, file location, database connection, cache store, and
cookie settings.
transmorpher.php
Add Transmorpher configuration settings
amigor/config/transmorpher.php
middleware, API settings, delivery settings, and upload settings.
0001_01_01_000000_create_users_table.php
Add migration for users, password reset tokens, and sessions tables
amigor/database/migrations/0001_01_01_000000_create_users_table.php
users
,password_reset_tokens
, andsessions
tables.0001_01_01_000001_create_cache_table.php
Add migration for cache and cache locks tables
amigor/database/migrations/0001_01_01_000001_create_cache_table.php
cache
andcache_locks
tables.0001_01_01_000002_create_jobs_table.php
Add migration for jobs, job batches, and failed jobs tables
amigor/database/migrations/0001_01_01_000002_create_jobs_table.php
jobs
,job_batches
, andfailed_jobs
tables.
vite.config.js
Add Vite configuration file for Laravel
amigor/vite.config.js
.env.example
Add example environment configuration file
.env.example
.gitattributes
Add Git attributes configuration file
.gitattributes
docker.yml
Add GitHub Actions workflow for Docker image CI
.github/workflows/docker.yml
pullpreview.yml
Add GitHub Actions workflow for PullPreview
.github/workflows/pullpreview.yml
.editorconfig
Add EditorConfig file for consistent coding styles
amigor/.editorconfig
.env.example
Add example environment configuration file for amigor
amigor/.env.example
application.
.env.transmorpher
Add environment configuration file for Transmorpher
amigor/.env.transmorpher
.gitattributes
Add Git attributes configuration file for amigor
amigor/.gitattributes
composer.json
Add composer.json file with dependencies and scripts
amigor/composer.json
Dockerfile
Add Dockerfile for PHP 8.3 environment
amigor/docker/8.3/Dockerfile
php.ini
Add PHP configuration file for Docker environment
amigor/docker/8.3/php.ini
start-container
Add start-container script for Docker environment
amigor/docker/8.3/start-container
supervisord.conf
Add supervisord configuration file for Docker environment
amigor/docker/8.3/supervisord.conf
Dockerfile
Add Dockerfile for webdevops/php-nginx environment
amigor/docker/Dockerfile
entryfile.sh
Add entryfile script for Docker environment
amigor/docker/entryfile.sh
package.json
Add package.json file with dependencies and scripts
amigor/package.json
.htaccess
Add .htaccess file for URL rewriting
amigor/public/.htaccess
robots.txt
Add robots.txt file to disallow all user agents
amigor/public/robots.txt
compose.pullpreview.yml
Add Docker Compose configuration for PullPreview environment
compose.pullpreview.yml
compose.yml
Add Docker Compose configuration for development environment
compose.yml
sail
Add Sail script for managing Docker environment
sail
7 files
UserFactory.php
Add UserFactory for generating user data
amigor/database/factories/UserFactory.php
UserFactory
for generating user data for testing.DatabaseSeeder.php
Add DatabaseSeeder for seeding database
amigor/database/seeders/DatabaseSeeder.php
DatabaseSeeder
for seeding the application's database.PullpreviewSeeder.php
Add PullpreviewSeeder for seeding specific user
amigor/database/seeders/PullpreviewSeeder.php
PullpreviewSeeder
for seeding the database with a specific user.ExampleTest.php
Add feature test for successful response
amigor/tests/Feature/ExampleTest.php
response.
TestCase.php
Add base test case class
amigor/tests/TestCase.php
ExampleTest.php
Add unit test for true assertion
amigor/tests/Unit/ExampleTest.php
phpunit.xml
Add PHPUnit configuration file
amigor/phpunit.xml
1 files
README.md
Add README file for amigor application
amigor/README.md