-
I tried building this and installing the prereqs on my LXC containers, Any idea what i am doing wrong? I´m showing my envs and what i did to install prereqs here. The instructions on the wiki are not really going into enough detail for my level of linux experience. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
OK i got it running. In above paste i went wrong on these points: #instead of faking the buildmetadata.json i had to build it with node (surprise) Now building viewtube worked properly #create redis service: #start service #modify redis password to what i set in .env #start mongo service #mongo is listening now it was time to run viewtube: and i have it up and running. |
Beta Was this translation helpful? Give feedback.
OK i got it running.
now i understand why "docker" is recommended. Im done with linux builds for the next year.
In above paste i went wrong on these points:
had to uncomment the mongodb user and pw from my server/.env file, as mongodb per default doesnt need that.
#instead of faking the buildmetadata.json i had to build it with node (surprise)
root@ViewTube:~/viewtube/client# node buildMetadata.mjs
Now building viewtube worked properly
pnpm run build
--> yep
#create redis service:
echo -e "[Unit]\nDescription=Redis In-Memory Data Store\nAfter=network.target\n\n[Service]\nExecStart=/usr/local/bin/redis-server /etc/redis/redis.conf\nExecStop=/usr/local/bin/redis-cli shutdown\nRestart=always…