Skip to content

Instantly share code, notes, and snippets.

View danieluac's full-sized avatar

AC danieluac

View GitHub Profile
@danieluac
danieluac / Dockerfile
Last active March 17, 2025 09:03
Run Odoo from container with debugger - VS Code
FROM odoo:16.0
USER root
RUN usermod -u 1000 odoo
COPY .config/requirements.txt /tmp/
RUN pip install --no-cache-dir -r /tmp/requirements.txt
RUN mkdir -p /opt/odoo/addons/custom_addons
RUN chown odoo:odoo -R /opt/odoo/addons/custom_addons
@danieluac
danieluac / odoo.conf
Last active March 17, 2025 08:42 — forked from Guidoom/gist:d5db0a76ce669b139271a528a8a2a27f
Odoo conf file sample
[options]
#
# WARNING:
# If you use the Odoo Database utility to change the master password be aware
# that the formatting of this file WILL be LOST! A copy of this file named
# /etc/odoo/openerp-server.conf.template has been made in case this happens
# Note that the copy does not have any first boot changes
#-----------------------------------------------------------------------------
# Odoo Server Config File - TurnKey Linux
@danieluac
danieluac / deploy.sh
Created February 9, 2022 18:37 — forked from cagartner/deploy.sh
Laravel Push deploy Github actions example
#!/bin/sh
set -e
vendor/bin/phpunit
(git push) || true
git checkout production
git merge master