Feat: support for laravel preview environment (feature testing) #537
aagjalpankaj
started this conversation in
Ideas & Feature Requests
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
serversideup/docker-php
image can be used efficiently to test one feature at a time if we allowmigrate:fresh --seed
.e.g. We have 3 environments:
Production
(for the tag generated from main branch)Staging
(for main branch)Testing
(for feature branches)We use
Testing
environment to deploy one feature at a time. But it creates incompatibility b/w the feature and database state. Because of that, we can't test features efficiently onTesting
environment. Also, sometimes deployment fails and we need to reset the database manually.Beta Was this translation helpful? Give feedback.
All reactions