feat: update gitignore, add pg version and example env file
This commit is contained in:
parent
118b80275c
commit
46f0f7433f
3
.env.dist
Normal file
3
.env.dist
Normal file
|
@ -0,0 +1,3 @@
|
|||
ODOO_VERSION=17.0
|
||||
COMMAND=-d odoo
|
||||
PG_VERSION=14.12 #Moved to 14.15 in Odoo 18
|
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -1 +1,5 @@
|
|||
.env
|
||||
.odoo/
|
||||
.enterprise/
|
||||
.modules/
|
||||
.idea/
|
|
@ -12,7 +12,7 @@ services:
|
|||
- ./enterprise:/mnt/enterprise
|
||||
command: "odoo ${COMMAND}"
|
||||
db:
|
||||
image: postgres:14.12
|
||||
image: "postgres:${PG_VERSION}"
|
||||
environment:
|
||||
- POSTGRES_DB=postgres
|
||||
- POSTGRES_PASSWORD=odoo
|
||||
|
|
Loading…
Reference in a new issue