Skip to content

Instantly share code, notes, and snippets.

View jp-sft's full-sized avatar

Jessy Pango jp-sft

View GitHub Profile
@rifayetuxbd
rifayetuxbd / create_configure_angular_standalone_with_firebase_emualtor.md
Last active December 26, 2024 20:56
Create and configure angular standalone app with firebase emulators

Create and configure angular standalone app with firebase emulators

Create Angular Standalone App

Create angular standalone app by using command npx @angular/cli@latest new <APP_NAME> --standalone --routing --style=scss

Generate and Update enviroment files

  • Generate environment file for production and devlopment by using command ng g environments
    • It will generate two file environment.ts and environment.development.ts under src/environments/
    • It will update amgular.json file for replacing environment.ts with environment.development.ts for dev version
  • Update environments to below
@ppa-odoo
ppa-odoo / templates_inherit_demo
Last active December 19, 2023 13:06
Odoo: How to inherit <templates> of web module?
REF LINK: https://www.odoo.com/forum/help-1/question/odoo10-how-to-inherit-templates-of-web-module-119140#answer-119142
This is main template:
<template id="template" xml:space="preserve">
<t t-name="DemoExample">
<div class="demo-one">
<p>odoo</p>
</div>
</t>