Add basic files

- git ignore rules
- releases folders
- unit test setup
- readme file
- pycharm execute unit test
This commit is contained in:
Aurelien Vaillant
2022-01-24 15:20:00 +01:00
commit 6eaf4e2c53
5 changed files with 57 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
### PyCharm ###
.idea/
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
**/__pycache__/
# Unit Test #
*.zip
tests/blender/**
tests/blender/*.dmg
!tests/blender/.keep
### Blender ###
*.blend1
### Unreal ###
tests/unreal_sample/DerivedDataCache
tests/unreal_sample/Intermediate
tests/unreal_sample/Saved
# Secret file
**/token.txt
# Virtual Environment
tests/venv
venv/
+24
View File
@@ -0,0 +1,24 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Launch Unit Test" type="PythonConfigurationType" factoryName="Python">
<module name="moderlab-type" />
<option name="INTERPRETER_OPTIONS" value="" />
<option name="PARENT_ENVS" value="true" />
<envs>
<env name="PYTHONUNBUFFERED" value="1" />
</envs>
<option name="SDK_HOME" value="E:\Projects\Git\Blender-Moderlab-Config\addons\moderlab-type\tests\venv\Scripts\python.exe" />
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$" />
<option name="IS_MODULE_SDK" value="false" />
<option name="ADD_CONTENT_ROOTS" value="true" />
<option name="ADD_SOURCE_ROOTS" value="true" />
<EXTENSION ID="PythonCoverageRunConfigurationExtension" runner="coverage.py" />
<option name="SCRIPT_NAME" value="$PROJECT_DIR$/tests/main.py" />
<option name="PARAMETERS" value="" />
<option name="SHOW_COMMAND_LINE" value="false" />
<option name="EMULATE_TERMINAL" value="false" />
<option name="MODULE_MODE" value="false" />
<option name="REDIRECT_INPUT" value="false" />
<option name="INPUT_FILE" value="" />
<method v="2" />
</configuration>
</component>
+2
View File
@@ -0,0 +1,2 @@
# Blender Addon
Template repository about blender addon.
View File
+2
View File
@@ -0,0 +1,2 @@
docker
PyGithub