diff --git a/addons/base_accounting_kit/static/description/index.html b/addons/base_accounting_kit/static/description/index.html new file mode 100644 index 0000000..4a2b8d7 --- /dev/null +++ b/addons/base_accounting_kit/static/description/index.html @@ -0,0 +1,1665 @@ + + + +
+ + +
+ A Full-Fledged Accounting kit For Every + Organization.
+ +pip
+ install openpyxl
+ pip
+ install ofxparse
+ pip
+ install qifparse
+ FROM odoo:19.0
+
+ USER root
+
+ # Install qifparse to a custom directory
+ RUN pip3 install --target=/opt/qiflibs qifparse
+
+ # Add that directory to PYTHONPATH
+ ENV PYTHONPATH="/opt/qiflibs:$PYTHONPATH"
+
+ USER odoo
+ 2.Update your docker-compose.yml to use this custom Dockerfile for the web service:
+ services:
+ web:
+ build:
+ context: .
+ dockerfile: Dockerfile.odoo
+
+ 3. Rebuild and restart the containers:
+ docker-compose build
+ docker-compose up -d
+
+