├── .all-contributorsrc ├── .env.container ├── .env.container.template ├── .github ├── FUNDING.yml └── workflows │ └── serverstatus.yml ├── .gitignore ├── .vscode └── tasks.json ├── CITATION.cff ├── Dockerfile ├── LICENSE ├── README.md ├── debug.sh ├── deploy.sh ├── docker-compose.debug.yml ├── docker-compose.yml ├── generators ├── __init__.py ├── baseplate │ ├── baseplate_description.html │ ├── baseplate_form.py │ ├── baseplate_generator.py │ ├── baseplate_settings.py │ └── main.py ├── classicbin │ ├── classicbin_description.html │ ├── classicbin_form.py │ ├── classicbin_generator.py │ ├── classicbin_settings.py │ └── main.py ├── common │ ├── __init__.py │ ├── bin_base.py │ ├── settings_form.html │ └── settings_form.py ├── holeybin │ ├── holeybin_description.html │ ├── holeybin_form.py │ ├── holeybin_generator.py │ ├── holeybin_settings.py │ ├── holeybin_settings_form.html │ └── main.py ├── lightbin │ ├── lightbin_description.html │ ├── lightbin_form.py │ ├── lightbin_generator.py │ ├── lightbin_settings.py │ └── main.py └── solidbin │ ├── main.py │ ├── solidbin_description.html │ ├── solidbin_form.py │ ├── solidbin_generator.py │ └── solidbin_settings.py ├── gfg_main.py ├── grid_constants.py ├── help_files ├── compartment_help.html ├── export_format_help.html ├── holey_keepout_help.html ├── holey_numholes_help.html ├── holey_shape_help.html ├── holey_size_help.html ├── labeltab_help.html ├── magnet_help.html ├── scoopramp_help.html ├── size_help.html └── stackinglip_help.html ├── help_provider.py ├── requirements.txt ├── static ├── baseplate_sample.jpg ├── classicbin_sample.jpg ├── holeybin_holeshape.jpg ├── holeybin_holesize.jpg ├── holeybin_keepoutdiameter.jpg ├── holeybin_numholes.jpg ├── holeybin_sample.jpg ├── labeltab_options.jpg ├── lightbin_sample.jpg ├── magnet_hole_options.jpg ├── multirow_labeltab_options.jpg ├── scoopramp_options.jpg ├── solidbin_sample.jpg └── stackinglip_options.jpg ├── templates ├── base.html ├── front_page.html ├── index.html └── settings_offcanvas.html └── version.py /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.env.container: -------------------------------------------------------------------------------- 1 | GFG_DOMAIN=gridfinity.bouwens.co 2 | -------------------------------------------------------------------------------- /.env.container.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/.env.container.template -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/serverstatus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/.github/workflows/serverstatus.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | logs 3 | 4 | .vscode 5 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/README.md -------------------------------------------------------------------------------- /debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/debug.sh -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/deploy.sh -------------------------------------------------------------------------------- /docker-compose.debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/docker-compose.debug.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/baseplate/baseplate_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/baseplate/baseplate_description.html -------------------------------------------------------------------------------- /generators/baseplate/baseplate_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/baseplate/baseplate_form.py -------------------------------------------------------------------------------- /generators/baseplate/baseplate_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/baseplate/baseplate_generator.py -------------------------------------------------------------------------------- /generators/baseplate/baseplate_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/baseplate/baseplate_settings.py -------------------------------------------------------------------------------- /generators/baseplate/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/baseplate/main.py -------------------------------------------------------------------------------- /generators/classicbin/classicbin_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/classicbin/classicbin_description.html -------------------------------------------------------------------------------- /generators/classicbin/classicbin_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/classicbin/classicbin_form.py -------------------------------------------------------------------------------- /generators/classicbin/classicbin_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/classicbin/classicbin_generator.py -------------------------------------------------------------------------------- /generators/classicbin/classicbin_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/classicbin/classicbin_settings.py -------------------------------------------------------------------------------- /generators/classicbin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/classicbin/main.py -------------------------------------------------------------------------------- /generators/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/common/bin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/common/bin_base.py -------------------------------------------------------------------------------- /generators/common/settings_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/common/settings_form.html -------------------------------------------------------------------------------- /generators/common/settings_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/common/settings_form.py -------------------------------------------------------------------------------- /generators/holeybin/holeybin_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/holeybin/holeybin_description.html -------------------------------------------------------------------------------- /generators/holeybin/holeybin_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/holeybin/holeybin_form.py -------------------------------------------------------------------------------- /generators/holeybin/holeybin_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/holeybin/holeybin_generator.py -------------------------------------------------------------------------------- /generators/holeybin/holeybin_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/holeybin/holeybin_settings.py -------------------------------------------------------------------------------- /generators/holeybin/holeybin_settings_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/holeybin/holeybin_settings_form.html -------------------------------------------------------------------------------- /generators/holeybin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/holeybin/main.py -------------------------------------------------------------------------------- /generators/lightbin/lightbin_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/lightbin/lightbin_description.html -------------------------------------------------------------------------------- /generators/lightbin/lightbin_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/lightbin/lightbin_form.py -------------------------------------------------------------------------------- /generators/lightbin/lightbin_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/lightbin/lightbin_generator.py -------------------------------------------------------------------------------- /generators/lightbin/lightbin_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/lightbin/lightbin_settings.py -------------------------------------------------------------------------------- /generators/lightbin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/lightbin/main.py -------------------------------------------------------------------------------- /generators/solidbin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/solidbin/main.py -------------------------------------------------------------------------------- /generators/solidbin/solidbin_description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/solidbin/solidbin_description.html -------------------------------------------------------------------------------- /generators/solidbin/solidbin_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/solidbin/solidbin_form.py -------------------------------------------------------------------------------- /generators/solidbin/solidbin_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/solidbin/solidbin_generator.py -------------------------------------------------------------------------------- /generators/solidbin/solidbin_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/generators/solidbin/solidbin_settings.py -------------------------------------------------------------------------------- /gfg_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/gfg_main.py -------------------------------------------------------------------------------- /grid_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/grid_constants.py -------------------------------------------------------------------------------- /help_files/compartment_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/compartment_help.html -------------------------------------------------------------------------------- /help_files/export_format_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/export_format_help.html -------------------------------------------------------------------------------- /help_files/holey_keepout_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/holey_keepout_help.html -------------------------------------------------------------------------------- /help_files/holey_numholes_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/holey_numholes_help.html -------------------------------------------------------------------------------- /help_files/holey_shape_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/holey_shape_help.html -------------------------------------------------------------------------------- /help_files/holey_size_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/holey_size_help.html -------------------------------------------------------------------------------- /help_files/labeltab_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/labeltab_help.html -------------------------------------------------------------------------------- /help_files/magnet_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/magnet_help.html -------------------------------------------------------------------------------- /help_files/scoopramp_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/scoopramp_help.html -------------------------------------------------------------------------------- /help_files/size_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/size_help.html -------------------------------------------------------------------------------- /help_files/stackinglip_help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_files/stackinglip_help.html -------------------------------------------------------------------------------- /help_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/help_provider.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/baseplate_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/baseplate_sample.jpg -------------------------------------------------------------------------------- /static/classicbin_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/classicbin_sample.jpg -------------------------------------------------------------------------------- /static/holeybin_holeshape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/holeybin_holeshape.jpg -------------------------------------------------------------------------------- /static/holeybin_holesize.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/holeybin_holesize.jpg -------------------------------------------------------------------------------- /static/holeybin_keepoutdiameter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/holeybin_keepoutdiameter.jpg -------------------------------------------------------------------------------- /static/holeybin_numholes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/holeybin_numholes.jpg -------------------------------------------------------------------------------- /static/holeybin_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/holeybin_sample.jpg -------------------------------------------------------------------------------- /static/labeltab_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/labeltab_options.jpg -------------------------------------------------------------------------------- /static/lightbin_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/lightbin_sample.jpg -------------------------------------------------------------------------------- /static/magnet_hole_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/magnet_hole_options.jpg -------------------------------------------------------------------------------- /static/multirow_labeltab_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/multirow_labeltab_options.jpg -------------------------------------------------------------------------------- /static/scoopramp_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/scoopramp_options.jpg -------------------------------------------------------------------------------- /static/solidbin_sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/solidbin_sample.jpg -------------------------------------------------------------------------------- /static/stackinglip_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/static/stackinglip_options.jpg -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/front_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/templates/front_page.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/settings_offcanvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeroen94704/gridfinitycreator/HEAD/templates/settings_offcanvas.html -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.4.4" 2 | --------------------------------------------------------------------------------