Commit
·
8d0998e
1
Parent(s):
ff6a5c2
output folder permission
Browse files
app.py
CHANGED
|
@@ -6,6 +6,7 @@ if __name__ == "__main__":
|
|
| 6 |
from ivoryos.config import Config
|
| 7 |
_config = Config()
|
| 8 |
_config.SQLALCHEMY_DATABASE_URI = 'sqlite:///:memory:'
|
|
|
|
| 9 |
# from ivoryos_plugin.hello_world import plugin
|
| 10 |
# USE CASE 1 - start OS using current module
|
| 11 |
ivoryos.run(__name__, config=_config, blueprint_plugins=source_code, port=7860)
|
|
|
|
| 6 |
from ivoryos.config import Config
|
| 7 |
_config = Config()
|
| 8 |
_config.SQLALCHEMY_DATABASE_URI = 'sqlite:///:memory:'
|
| 9 |
+
_config.OUTPUT_FOLDER = "/tmp/ivoryos_data"
|
| 10 |
# from ivoryos_plugin.hello_world import plugin
|
| 11 |
# USE CASE 1 - start OS using current module
|
| 12 |
ivoryos.run(__name__, config=_config, blueprint_plugins=source_code, port=7860)
|