Skip to content
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

[Docker] Mysql backup + PHPMyAdmin service #4

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# USER => your host's machine user
# UID => Your user ID (to find out, type in terminal => $ id -u)
# GID => Seu grupo (to find out, type in terminal => $ id -g)
UID=
GID=root

DB_NAME=wordpress
DB_USER=wordpress
DB_ROOT_PASSWORD=root
Expand Down
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Application
!wp-content/mu-plugins/*
wp-content/languages/
wp-content/plugins/*
wp-content/upgrade
wp-content/uploads/*
wp-src/

# Dotenv
.env
Expand All @@ -13,6 +15,8 @@ node_modules

# Theme
.DS_Store
wp-content/themes/
!wp-content/themes/vuewp/*
wp-content/themes/vuewp/.sass-cache/*
wp-content/themes/vuewp/css/custom.css
wp-content/themes/vuewp/dist/*
Expand All @@ -23,3 +27,11 @@ wp-content/themes/vuewp/app/static/*
wp-content/themes/twentyfifteen/*
wp-content/themes/twentysixteen/*
wp-content/themes/twentyseventeen/*

#Database backup
db-backup/*.sql
db-backup/*.tar.gz
db-backup/*.zip
db-backup/*.rar

/vendor/
31 changes: 31 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "badassworld/presale-site",
"description": "Sistema/Portal de pré-vendas do grupo do facebook BadassWorld",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Michel Felipe",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url":"https://wpackagist.org"
}
],
"minimum-stability": "stable",
"require": {
"wpackagist-plugin/jetpack":"*",
"wpackagist-plugin/akismet":"4.0.8",
"wpackagist-plugin/woocommerce":"3.4.3",
"wpackagist-plugin/woocommerce-domination":"1.1.6",
"wpackagist-plugin/woocommerce-extra-checkout-fields-for-brazil":"*",
"wpackagist-plugin/woocommerce-gateway-paypal-express-checkout":"*",
"wpackagist-plugin/yith-pre-order-for-woocommerce":"*",
"wpackagist-plugin/admin-custom-login":"*",
"wpackagist-plugin/custom-login":"*",
"wpackagist-theme/storefront":"*"
}
}
Loading