This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
The following test uses mypy to check the correctness of Python code using
typing, largely introduced in 3.5 and 3.6.
The two tests check all package code and all test code in the tests
directory, respectively.
Testing frameworks such as 'nose2' will automatically run the tests and will fail if any typing error
is detected (see step #3 below for more on this).
tests
directory, which should be at the top-level in your repository alongside your module directory.__init__
that sets self.pkgname
to match your library's package name. This assumes one package per repo, so the test would need to be changed if this isn't how the repo structure works.// Responsiveness | |
$tablet: 769px !default | |
// 960px container + 40px | |
$desktop: 1000px !default | |
// 1152px container + 40 | |
$widescreen: 1192px !default | |
// 960 and 1152 have been chosen because | |
// they are divisible by both 12 and 16 |