-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Fery Wardiyanto <[email protected]>
- Loading branch information
1 parent
f441f5c
commit c94806a
Showing
26 changed files
with
1,664 additions
and
63 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,28 @@ | ||
# excludes from the docker image/build | ||
|
||
# 1. Ignore Laravel-specific files we don't need | ||
bootstrap/cache/* | ||
storage/framework/cache/* | ||
storage/framework/sessions/* | ||
storage/framework/views/* | ||
storage/logs/* | ||
*.env* | ||
.rr.yml | ||
rr | ||
frankenphp | ||
vendor | ||
|
||
# 2. Ignore common files/directories we don't need | ||
fly.toml | ||
.vscode | ||
.idea | ||
**/*node_modules | ||
**.git | ||
**.gitignore | ||
**.gitattributes | ||
**.sass-cache | ||
**/*~ | ||
**/*.log | ||
**/.DS_Store | ||
**/Thumbs.db | ||
public/hot |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env sh | ||
|
||
# Run user scripts, if they exist | ||
for f in /var/www/html/.fly/scripts/*.sh; do | ||
# Bail out this loop if any script exits with non-zero status code | ||
bash "$f" -e | ||
done | ||
chown -R www-data:www-data /var/www/html | ||
|
||
if [ $# -gt 0 ]; then | ||
# If we passed a command, run it as root | ||
exec "$@" | ||
else | ||
exec supervisord -c /etc/supervisor/supervisord.conf | ||
fi |
Oops, something went wrong.