summarylogtreecommitdiffstats
path: root/rompr.install
blob: f1f25a0dc172daa15738443749a95a4c6fea19f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
post_install() {
  echo "RompR has been installed"
  echo ""
  echo "-> Webserver"
  echo "   RompR is a php webapp, and you now need to configure a php-capable"
  echo "   webserver or reverse proxy to serve it."
  echo "    - Nginx instructions are at:"
  echo "      https://fatg3erman.github.io/RompR/Recommended-Installation-on-Linux"
  echo "    - Apache instructions are at:"
  echo "      https://fatg3erman.github.io/RompR/Installation-on-Linux-Alternative-Method"
  echo ""
  echo "-> Database"
  echo "   The default installation uses an sqlite file to keep track of the MPD database"
  echo "   This can be substituted for mysql, instructions at:"
  echo "   https://fatg3erman.github.io/RompR/Using-a-MySQL-server"
  echo "   (however, even a 10,000+ song database results in barely a 1,5M .sq3 fileā€¦"
  echo "   and mysql is probably overkill here)"
  echo ""
  echo "-> Permissions"
  echo "   Finally, once you have setup a webserver, permissions will need fixing on:"
  echo "    - /usr/share/webapps/rompr/"
  echo "    - /var/lib/rompr/"
  echo ""
  echo "-> Configuring websocket server"
  echo "   Users of the MPD music player can take advantage of a Websocket interface. See:"
  echo "   https://fatg3erman.github.io/RompR/Rompr-And-MPD"
  echo ""
  echo "-> Backend"
  echo "   You may need to set up the backend service for RompR to work properly."
  echo "   See: https://fatg3erman.github.io/RompR/Backend-Daemon"
}