Framework/Odoo

Odoo - 오픈 소스 비즈니스 솔루션 Open source ERP 설치

청렴결백한 만능 재주꾼 2023. 2. 14. 06:56
반응형

odoo logo

현재 회사에 들어와서 오두 Odoo 를 처음 들었다. 오두가 프레임워크로써 역할을 해주고 모듈들을 독립적인 APP으로 사용할 수 있다. 여타 다른 프레임워크들이 안 그렇겠냐만은 좀 더 원하는 방식대로 편하게 조합하여 만들어갈 수 있다. 무료 버전인 커뮤니티 버전으로 Third-Party App에서 원하는 모듈들을 다운 받아 회사에서 원하는 것들을 만들어 본다. 

 

우리팀 매니저님이 오두의 매력에 매료되어 이걸로 회사의 SAP과 User사이의 Middleware 역할을 하는 소프트웨어를 구성할 것 같다.

 

설치 Install

https://www.odoo.com/documentation/16.0/administration/install/install.html

 

Installing Odoo — Odoo 16.0 documentation

C:\> cd CommunityPath/ C:\> python odoo-bin -r dbuser -w dbpassword --addons-path=addons -d mydb Where CommunityPath is the path of the Odoo Community installation, dbuser is the PostgreSQL login, dbpassword is the PostgreSQL password, and mydb is the name

www.odoo.com

상세하게 정리되어 있다.

데이터베이스는 PostgreSQL, 언어는 파이썬이니 미리 설치해두어야 한다. 그리고 깃 클론을 하고나서 디펜던시(pip install -r requirement.txt)들을 설치하고 나면 실행이 가능하다.

 

./odoo/odoo-bin -c config

Terminal

 

 

cat config

Config에 여러가지 설정과 addons_path를 설정해주어 같이 실행을 시킨다. 명령문 칠 때 같이 넣어줄 수 도 있다. 

반응형