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
#!/bin/sh | |
# | |
# This file needs to be executed once a new file system is imported. | |
# What this does, is updating project settings to have localhost as root. | |
# | |
# Dev settings & htaccess. | |
if [ -f "src/wp-config.php" ]; then | |
rm src/wp-config.php |
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
#!/bin/sh | |
# | |
# This file needs to be executed once a new database is imported. | |
# What this does, is updating database to tell wordpress that the site should | |
# be runned on localhost. | |
# | |
## Supress warning. | |
export MYSQL_PWD=wordpress |
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
declare module "vue2-datepicker" { | |
import { Component } from "vue/types/options"; | |
/* eslint-disable @typescript-eslint/no-explicit-any */ | |
/* eslint-disable @typescript-eslint/interface-name-prefix */ | |
interface IShortcuts { | |
text: string; | |
start: Date; | |
end: Date; | |
} |
OlderNewer