Template:Installation/Common: Difference between revisions
Programizer (talk | contribs) (Undo revision 10320 by Programizer (talk), Reason: Change should only apply to mysql development version.) |
(Add reverse proxy section to the bottom of the guide) |
||
(9 intermediate revisions by 5 users not shown) | |||
Line 5: | Line 5: | ||
{{#tag:syntaxhighlight| | {{#tag:syntaxhighlight| | ||
cd ~ | cd ~ | ||
git clone {{#ifeq: {{#var:mode}}|production|-b | git clone {{#ifeq: {{#var:mode}}|production|-b main|}} https://github.com/diaspora/diaspora.git | ||
cd diaspora | cd diaspora | ||
|lang=bash}} | |lang=bash}} | ||
Line 17: | Line 17: | ||
{{#tag:syntaxhighlight| | {{#tag:syntaxhighlight| | ||
cp config/database.yml.example config/database.yml | cp config/database.yml.example config/database.yml | ||
cp config/diaspora. | cp config/diaspora.toml.example config/diaspora.toml | ||
|lang=bash}} | |lang=bash}} | ||
{{#ifeq: {{#var:mode}}|production|{{Template:Installation/Configuration | {{#ifeq: {{#var:mode}}|production|{{Template:Installation/Configuration}}|}} | ||
== Bundle == | == Bundle == | ||
Line 27: | Line 27: | ||
{{#tag:syntaxhighlight| | {{#tag:syntaxhighlight| | ||
script/configure_bundler | script/configure_bundler | ||
bin/bundle install --full-index | |||
|lang=bash}} | |lang=bash}} | ||
Line 45: | Line 43: | ||
|lang=bash}} | |lang=bash}} | ||
{{#ifeq: {{#var:mode}}|production|{{Installation/Assets}}|}} | {{#ifeq: {{#var:mode}}|production|{{Installation/Assets}}|}} | ||
== Start diaspora* == | == Start diaspora* == | ||
Line 53: | Line 52: | ||
|lang="bash"}} | |lang="bash"}} | ||
Your diaspora server is now running, either on a unix socket (current default) or on http port 3000. The listening method can be configured in diaspora.toml, search for '3000' or 'listen' to find the correct line. | |||
Your diaspora server is now running, either on a unix socket (current default) or on http port 3000. The listening method can be configured in diaspora. | |||
{{#ifeq: {{#var:mode}}|production| | |||
The server script is good to ensure your server works as expected. You should set up [[Automatic_startup_methods|automatic startup]] for your pod, so that your pod automatically starts on server reboots, and recovers from eventual crashes. | |||
{{Installation/Reverse_proxy}} | |||
|}} | |||
== Backup == | == Backup == |
Latest revision as of 23:11, 15 June 2024
Get the source
It's time to download diaspora*! As your diaspora user run:
cd ~
git clone https://github.com/diaspora/diaspora.git
cd diaspora
Don't miss the cd diaspora, all coming commands expect to be run from that directory!
Configuration
Copy files
cp config/database.yml.example config/database.yml
cp config/diaspora.toml.example config/diaspora.toml
Bundle
It's time to install the Ruby libraries required by diaspora*:
script/configure_bundler
bin/bundle install --full-index
This takes quite a while. When it's finished, you should see a message similar to: Bundle complete! 137 Gemfile dependencies, 259 gems now installed. If that's not the case, you should seek for help on the mailing list or the IRC channel.
Running the manual gem install command shown in the error message can sometimes show a clearer error message if the bundle command fails.
Database setup
Double check your config/database.yml looks right and run:
bin/rake db:create db:migrate
Start diaspora*
It's time to start diaspora*:
./script/server
Your diaspora server is now running, either on a unix socket (current default) or on http port 3000. The listening method can be configured in diaspora.toml, search for '3000' or 'listen' to find the correct line.