PartDB: Difference between revisions

From FlowerHouseWiki
(Created page with "{{ContainerInfo |image = Froeling.jpg |Domain = [https://parts.flowerhouse.at parts.flowerhouse.at] |IP = 192.168.88.?? |MAC = ?? |Privileged = No |OS = Debian Buster |RAM = 5...")
 
 
(62 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{ContainerInfo
{{ContainerInfo
|image = Froeling.jpg
|Domain = [https://parts.flowerhouse.at parts.flowerhouse.at]
|Domain = [https://parts.flowerhouse.at parts.flowerhouse.at]
|IP = 192.168.88.??
|IP = 192.168.88.16
|MAC = ??
|MAC = 32:22:DA:F2:39:1B
|Privileged = No
|Privileged = No
|OS = Debian Buster
|OS = Debian Bullseye
|RAM = 512MB
|RAM = 512MB
|Cores = 1
|Cores = 1
}}
}}


<p>The PartDB-LXC is reachable under <syntaxhighlight lang="Bash" inline>192.168.88.??</syntaxhighlight> which is located in the ServerVLAN.</p>
<p>The PartDB-LXC is reachable under <syntaxhighlight lang="Bash" inline>192.168.88.16</syntaxhighlight> which is located in the ServerVLAN.</p>
<p>The subdomain is [https://parts.flowerhouse.at parts.flowerhouse.at] which is handled by the [[ReverseProxy]].</p>
<p>The subdomain is [https://parts.flowerhouse.at parts.flowerhouse.at] which is handled by the [[ReverseProxy]].</p>
__TOC__
__TOC__
== Basic Setup ==
== Installation ==
<p>Change locales to <syntaxhighlight lang="Bash" inline>de_DE.UTF-8</syntaxhighlight>:</p>
[https://docs.part-db.de/installation/installation%20guide-debian.html Installation Guide]
 
== Update ==
[https://docs.part-db.de/installation/installation_guide-debian.html#update-part-db Update Guide]
 
Move into Part-DB folder
<syntaxhighlight lang="console">
cd /var/www/partdb
</syntaxhighlight>
 
Checkout master branch
<syntaxhighlight lang="console">
git checkout master
</syntaxhighlight>
 
Pull latest Part-DB version from GitHub
<syntaxhighlight lang="console">
<syntaxhighlight lang="console">
dpkg-reconfigure locales
git pull
</syntaxhighlight>
</syntaxhighlight>


=== Web Interface Setup ===
Checkout the latest version (or use a specific version, like described above)
<syntaxhighlight lang="console">
git checkout $(git describe --tags $(git rev-list --tags --max-count=1))
</syntaxhighlight>
 
Apply correct permission
<syntaxhighlight lang="console">
chown -R www-data:www-data .
</syntaxhighlight>
 
Install new composer dependencies
<syntaxhighlight lang="console">
sudo -u www-data composer install --no-dev -o
</syntaxhighlight>
 
Install yarn dependencies and build new frontend
<syntaxhighlight lang="console" line>
sudo yarn install
sudo yarn build
</syntaxhighlight>
 
Apply new database schemas (you should do a backup of your database file /var/www/partdb/var/app.db before)
<syntaxhighlight lang="console">
sudo -u www-data php bin/console doctrine:migrations:migrate
</syntaxhighlight>
 
Clear Part-DB cache
<syntaxhighlight lang="console">
sudo -u www-data php bin/console cache:clear
</syntaxhighlight>
 
 
<syntaxhighlight lang="console">
 
</syntaxhighlight>


== Sources ==
== Sources ==
* [https://github.com/Part-DB/Part-DB/wiki/EN%3A-Requirements Requirements]
* [https://github.com/Part-DB/Part-DB/wiki/EN%3A-Installation Install PartDB]

Latest revision as of 08:28, 24 August 2023


Network


IP: 192.168.88.16
MAC: 32:22:DA:F2:39:1B
Domain: parts.flowerhouse.at

System


OS: Debian Bullseye
RAM: 512MB
Cores: 1
Privileged: No

The PartDB-LXC is reachable under 192.168.88.16 which is located in the ServerVLAN.

The subdomain is parts.flowerhouse.at which is handled by the ReverseProxy.

Installation

Installation Guide

Update

Update Guide

Move into Part-DB folder

cd /var/www/partdb

Checkout master branch

git checkout master

Pull latest Part-DB version from GitHub

git pull

Checkout the latest version (or use a specific version, like described above)

git checkout $(git describe --tags $(git rev-list --tags --max-count=1))

Apply correct permission

chown -R www-data:www-data .

Install new composer dependencies

sudo -u www-data composer install --no-dev -o

Install yarn dependencies and build new frontend

sudo yarn install
sudo yarn build

Apply new database schemas (you should do a backup of your database file /var/www/partdb/var/app.db before)

sudo -u www-data php bin/console doctrine:migrations:migrate

Clear Part-DB cache

sudo -u www-data php bin/console cache:clear


Sources