Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Julien Veyssier
funkwhale
Commits
76c94f41
Commit
76c94f41
authored
Jun 09, 2018
by
Eliot Berriot
Browse files
Merge branch 'patch-1' into 'develop'
slight fixes to Debian install doc See merge request
funkwhale/funkwhale!240
parents
06a78336
7fa99750
Changes
2
Hide whitespace changes
Inline
Side-by-side
docs/installation/debian.rst
View file @
76c94f41
...
@@ -23,7 +23,7 @@ default on system. You can install them using:
...
@@ -23,7 +23,7 @@ default on system. You can install them using:
.. code-block:: shell
.. code-block:: shell
sudo apt-get update
sudo apt-get update
sudo apt-get install curl python3-venv git unzip
sudo apt-get install curl
python3-pip
python3-venv git unzip
Layout
Layout
...
@@ -90,7 +90,7 @@ First, we'll download the latest api release.
...
@@ -90,7 +90,7 @@ First, we'll download the latest api release.
curl -L -o "api-|version|.zip" "https://code.eliotberriot.com/funkwhale/funkwhale/-/jobs/artifacts/|version|/download?job=build_api"
curl -L -o "api-|version|.zip" "https://code.eliotberriot.com/funkwhale/funkwhale/-/jobs/artifacts/|version|/download?job=build_api"
unzip "api-|version|.zip" -d extracted
unzip "api-|version|.zip" -d extracted
mv extracted/api/* api/
mv extracted/api/* api/
rm
dir
extracted
rm
-rf
extracted
Then we'll download the frontend files:
Then we'll download the frontend files:
...
...
docs/installation/external_dependencies.rst
View file @
76c94f41
...
@@ -32,10 +32,8 @@ Create the project database and user:
...
@@ -32,10 +32,8 @@ Create the project database and user:
.. code-block:: shell
.. code-block:: shell
CREATE DATABASE "scratch"
CREATE DATABASE "funkwhale"
WITH ENCODING 'utf8'
WITH ENCODING 'utf8';
LC_COLLATE = 'en_US.utf8'
LC_CTYPE = 'en_US.utf8';
CREATE USER funkwhale;
CREATE USER funkwhale;
GRANT ALL PRIVILEGES ON DATABASE funkwhale TO funkwhale;
GRANT ALL PRIVILEGES ON DATABASE funkwhale TO funkwhale;
...
@@ -58,7 +56,7 @@ for funkwhale to work properly:
...
@@ -58,7 +56,7 @@ for funkwhale to work properly:
.. code-block:: shell
.. code-block:: shell
sudo -u postgres psql -c 'CREATE EXTENSION "unaccent";'
sudo -u postgres psql
funkwhale
-c 'CREATE EXTENSION "unaccent";'
Cache setup (Redis)
Cache setup (Redis)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment