Difference between revisions of "Dreamhack Getting Started"

From Dreamwidth Notes
Jump to: navigation, search
m (Reverted edits by Ninetydegrees (talk) to last revision by Sophira)
m (Updating SSH hostname/host keys for Dreamhacks.)
(19 intermediate revisions by 5 users not shown)
Line 1: Line 1:
[[Category:Development]]
 
[[Category:Dreamhack]]
 
[[Category:Getting Started]]
 
 
 
The [http://hack.dreamwidth.net Dreamhack] service is a hosted development sandbox environment where you can do Dreamwidth development without having to have your own server. Dreamhack accounts are available free of charge for anyone who's interested in working on the Dreamwidth code.
 
The [http://hack.dreamwidth.net Dreamhack] service is a hosted development sandbox environment where you can do Dreamwidth development without having to have your own server. Dreamhack accounts are available free of charge for anyone who's interested in working on the Dreamwidth code.
  
 
When you get your Dreamhack account first created, most of the setup will be done for you. There are still a bunch of things you should do at first to make sure that your development environment is properly set up for you to work on, though. This guide is a walkthrough of all the steps you should take (in order) when you first log into your Dreamhack account.  
 
When you get your Dreamhack account first created, most of the setup will be done for you. There are still a bunch of things you should do at first to make sure that your development environment is properly set up for you to work on, though. This guide is a walkthrough of all the steps you should take (in order) when you first log into your Dreamhack account.  
  
You should also read [[Beginning dev checklist]] for more background information; if you are on windows, [[Newbie Guide for Windows People Working on Minor Bugs]] might be useful.
+
You should also read [[Beginning dev checklist]] for more background information; if you are on Windows, [[Newbie Guide: Getting Started on Windows]] might be useful. If you wind up in difficulty, take a look at [[Dreamhack Troubleshooting]].
 +
 
 +
= Get a SSH client =
  
==Get a SSH client==
+
To connect to your Dreamhack and work on things, you'll need a program that will do SSH, or "secure shell". It lets you connect to the Dreamhack server and work with the files, which you can't do through your browser. If you're running Windows, download [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]. If you're on a Mac or a Linux distribution, you won't need a separate program; the Terminal (Applications/Utilities/Terminal on the Mac) will let you connect. If you're on a Mac, you can also [[Connecting_to_the_Dreamhack_server_with_Cyberduck | use Cyberduck]].
  
To connect to your Dreamhack and work on things, you'll need a program that will do SSH, or "secure shell". It lets you connect to the Dreamhack server and work with the files, which you can't do through your browser. If you're running Windows, download [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]. If you're on a Mac or a Linux distribution, you won't need a separate program; the Terminal (Applications/Utilities/Terminal on the Mac) will let you connect.
+
= Connect to your Dreamhack =
  
==Connect to your Dreamhack==
+
Once you have an SSH client, you can connect to Dreamhack. In PuTTY, put "ssh-hack.dreamwidth.net" for the server, and use the username and password you were given in your welcome email. In Terminal, type:
  
Once you have an SSH client, you can connect to Dreamhack. In PuTTY, put "hack.dreamwidth.net" for the server, and use the username and password you were given in your welcome email. In Terminal, type:
+
<source lang="bash">ssh dh-username@ssh-hack.dreamwidth.net</source>
  
<source lang="bash">ssh dh-username@hack.dreamwidth.net</source>
+
If this is the first time you've connected to the server, your SSH client will inform you that it hasn't seen this host before, and ask you to verify the fingerprint of the host key. For '''ssh-hack.dreamwidth.net''', this fingerprint will show one of the following, depending on your SSH client:
  
==Change your password==
+
* <tt>SHA256:TAtO07wp/zu1L4lIoYPnJh9pficQUcBsl9aqZiEM6UE</tt>
 +
* <tt>SHA256:jU9iFXflDW/FMRAFDaR0HMZ3zwsNxBa333A4Pl7ys1w</tt>
 +
* <tt>73:10:37:bc:47:4b:24:dc:50:5f:7e:af:f7:b4:a0:b6</tt>
 +
* <tt>29:18:e9:63:c5:b5:79:5c:bd:d6:3b:63:ce:7a:83:85</tt>
 +
 
 +
Compare the fingerprint to what you see above, and if one of the above fingerprints match, click (or type) "Yes" to connect. If you do ''not'' see the fingerprint listed above, please contact Sophira on [[IRC]] or by email.
 +
 
 +
= Change your password =
  
 
Change your password to something you can remember. Type:
 
Change your password to something you can remember. Type:
Line 27: Line 32:
 
and follow the prompts.
 
and follow the prompts.
  
==Set the system password==
+
= Set the system password =
  
 
Your Dreamhack installation has a user named 'system', which has all the admin privs and owns all the system styles. The system account is the first account on the server. You need to set a password so you can log into it. Type:
 
Your Dreamhack installation has a user named 'system', which has all the admin privs and owns all the system styles. The system account is the first account on the server. You need to set a password so you can log into it. Type:
Line 35: Line 40:
 
Pick something you'll remember. (If you ever forget the system password, though, you can just run make_system.pl again and re-set it.)
 
Pick something you'll remember. (If you ever forget the system password, though, you can just run make_system.pl again and re-set it.)
  
==Get acquainted with the command line==
+
= Get acquainted with the command line =
  
 
If you haven't used a command line before, it can be a strange experience. You may want to check out the [[Command line tutorial]] before carrying on, as it explains a few of the concepts that we'll be using in the sections below.
 
If you haven't used a command line before, it can be a strange experience. You may want to check out the [[Command line tutorial]] before carrying on, as it explains a few of the concepts that we'll be using in the sections below.
  
==Edit the config files==
+
= Edit the config files =
  
 
You'll need to edit a few config files to make for easier development. Do the following:
 
You'll need to edit a few config files to make for easier development. Do the following:
Line 58: Line 63:
 
When you're done, press Ctrl-X to exit nano. It'll ask you if you want to save - press Y. It'll then ask you where you want to save the file. At this point, just press RETURN; you already told nano where to save it when you launched it, and pressing RETURN tells nano just to use that. You'll then find yourself back at the command line.
 
When you're done, press Ctrl-X to exit nano. It'll ask you if you want to save - press Y. It'll then ask you where you want to save the file. At this point, just press RETURN; you already told nano where to save it when you launched it, and pressing RETURN tells nano just to use that. You'll then find yourself back at the command line.
  
You should also edit your <tt>$LJHOME/etc/config-local.pl</tt> file for some other local settings:
+
You should also edit your <tt>$LJHOME/ext/local/etc/config-local.pl</tt> file for some other local settings:
  
 
<source lang="bash">cd $LJHOME
 
<source lang="bash">cd $LJHOME
nano -w etc/config-local.pl</source>
+
nano -w ext/local/etc/config-local.pl</source>
  
 
Values you may want to change and/or set:
 
Values you may want to change and/or set:
Line 72: Line 77:
 
Remember to save and exit when you're done.
 
Remember to save and exit when you're done.
  
==Back up your configs==
+
= Start Apache =
  
For safety and paranoia's sake, it's a good idea to back up all three of your config files in case a change accidentally overwrites them:
+
Once all of this is done, you're ready to start Apache. Type:
  
<source lang="bash">mkdir ~/config-backup
+
<source lang="bash">start-apache</source>
cp $LJHOME/etc/config* ~/config-backup</source>
+
  
==Protect your configs from updates==
+
Your Dreamhack will now appear at http://www.yourusername.hack.dreamwidth.net.
  
Code updates can wind up wiping out your config files, which will cause you to get errors connecting to your database. To prevent this from happening, set all of your config files to be locally tracked:
+
= Update your code regularly =
  
<source lang="bash">cd $LJHOME
+
Before you do any development work, it's a good idea to update your code to the most recent version. See [[Dev Maintenance]] for instructions.
mkdir cvs/local cvs/local/etc cvs/local/cvs
+
cp etc/config-local.pl cvs/local/etc
+
cp etc/config.pl cvs/local/etc
+
cp etc/config-private.pl cvs/local/etc</source>
+
  
Using nano, create the <tt>$LJHOME/cvs/local/cvs/multicvs-private.conf</tt> file:
+
= Get familiar with version control =
  
<source lang="bash">nano -w $LJHOME/cvs/local/cvs/multicvs-private.conf</source>
+
Browse through [[Git How To]] and get familiar with how things work -- bookmark it so you can refer back to each section as needed.
  
and put this in it:
+
= Hack away! =
  
local .
+
You can now start hacking! For more information, check out the [[:Category: Development]] category, especially the [[Beginning dev checklist]], [[Dev Getting Started]], and [[Programming Guidelines]] pages. If you run into problems, the [irc://irc.freenode.net/dreamwidth-dev #dreamwidth-dev] [[IRC]] channel and the <dwcomm>dw_dev_training</dwcomm> community are good places to go for help.  
  
Then, after exiting nano, copy the file you just created to the main <tt>cvs</tt> directory:
+
A quick and easy way to populate your Dreamhack with lots of users is to run Sophie's [[Script:_create-users]].
  
<source lang="bash">cp $LJHOME/cvs/local/cvs/multicvs-private.conf $LJHOME/cvs/</source>
+
We're looking forward to seeing your first patch!
  
From now on, if you want to make changes to any of your configs, do them to the versions in <tt>cvs/local/etc/</tt>. (You'll need to do this if any new features come about that involve config changes; it's a good idea to compare your local versions with the versions in Mercurial from time to time.)
+
= Stop Apache =
  
==Start Apache==
+
At the end of a Dreamhack session, remember to <code>stop-apache</code> so that the Dreamhack machine isn't running too many web servers that aren't being used.
  
Once all of this is done, you're ready to start Apache. Type:
+
= A note about workers =
  
<source lang="bash">start-apache</source>
+
Some features run asynchronously. That means they don't happen immediately when they are fired off. Instead, they get queued up to run later via [[Workers]], at pre-programmed periods of time.
  
Your Dreamhack will now appear at http://www.yourusername.hack.dreamwidth.net.
+
Features that run asynchronously via workers are either:
 +
* process heavy, such as search and notifications, or
 +
* require communication with remote sites we don't control, such as crossposts and imports.
  
==Update your code regularly==
+
If you aren't working on these features, then you don't need to worry about workers.
  
Before you do any development work, it's a good idea to update your code to the most recent version. See [[Dev Maintenance]] for instructions.
+
If you are working on these features, there are two different kinds of workers: [[TheSchwartz]] and [[Gearman]]. If you need them, recent Dreamhacks are already set up to let you use TheSchwartz (and Gearman?). If your Dreamhack is very old you can set up the TheSchwartz database using:
  
==Get familiar with version control==
+
<source lang="bash">$LJHOME/bin/ljdb < /usr/share/doc/libtheschwartz-perl/schema.sql</source>
  
Read [[Version Control]] and get familiar with how things work. You don't need to use Mercurial queues to manage your patches -- it's perfectly possible to just use $LJHOME/bin/cvsreport.pl every time you want to make a patch.
+
then restarting Apache.
  
==Hack away!==
+
[[Category:Development]]
 
+
[[Category:Dreamhack]]
You can now start hacking! For more information, check out the [[:Category: Development]] category, especially the [[Beginning dev checklist]], [[Dev Getting Started]], and [[Programming Guidelines]] pages. If you run into problems, the [irc://irc.freenode.net/dreamwidth-dev #dreamwidth-dev] [[IRC]] channel and the <dwcomm>dw_dev_training</dwcomm> community are good places to go for help.
+
[[Category:Getting Started]]
 
+
We're looking forward to seeing your first patch!
+
 
+
==A note about TheSchwartz==
+
 
+
Previously, the Dreamhack setup process required you to set up [[TheSchwartz]] manually. You no longer need to do this as it's done for you automatically, but if you need to use TheSchwartz, you will still need to run the workers manually. This can generally be done with the command <code>$LJHOME/bin/worker-manager --debug</code>. However, please do not run this unless you need to; due to [http://bugs.dwscoalition.org/show_bug.cgi?id=1491 an issue with some of the workers], it can cause load for the server. It may be that the area you are working with does not need TheSchwartz for it to work.
+
 
+
Using the <code>--debug</code> switch, as in the command above, will force the worker manager to remain in the foreground, which makes it easy to stop; you can just press Ctrl-C. Note that even with <code>--debug</code> on, you can run worker-manager in the shell and use your Web browser to access your Dreamhack at the same time.
+
 
+
If you need to run <code>worker-manager</code> in the background, then you can leave off the <code>--debug</code> switch, which will make it go into the background. When you're done, you can then stop it with the command <code>killall worker-manager</code>. You may see a few "Operation not permitted" errors when you do this; you can ignore these, as they refer to other people's worker-manager processes, which you can't kill; you can only kill your own processes.
+
 
+
(At some point, there will be a script to make it easier to do this! For now, though, this is what you need to so.)
+

Revision as of 04:46, 4 April 2017

The Dreamhack service is a hosted development sandbox environment where you can do Dreamwidth development without having to have your own server. Dreamhack accounts are available free of charge for anyone who's interested in working on the Dreamwidth code.

When you get your Dreamhack account first created, most of the setup will be done for you. There are still a bunch of things you should do at first to make sure that your development environment is properly set up for you to work on, though. This guide is a walkthrough of all the steps you should take (in order) when you first log into your Dreamhack account.

You should also read Beginning dev checklist for more background information; if you are on Windows, Newbie Guide: Getting Started on Windows might be useful. If you wind up in difficulty, take a look at Dreamhack Troubleshooting.

Get a SSH client

To connect to your Dreamhack and work on things, you'll need a program that will do SSH, or "secure shell". It lets you connect to the Dreamhack server and work with the files, which you can't do through your browser. If you're running Windows, download PuTTY. If you're on a Mac or a Linux distribution, you won't need a separate program; the Terminal (Applications/Utilities/Terminal on the Mac) will let you connect. If you're on a Mac, you can also use Cyberduck.

Connect to your Dreamhack

Once you have an SSH client, you can connect to Dreamhack. In PuTTY, put "ssh-hack.dreamwidth.net" for the server, and use the username and password you were given in your welcome email. In Terminal, type:

ssh dh-username@ssh-hack.dreamwidth.net

If this is the first time you've connected to the server, your SSH client will inform you that it hasn't seen this host before, and ask you to verify the fingerprint of the host key. For ssh-hack.dreamwidth.net, this fingerprint will show one of the following, depending on your SSH client:

  • SHA256:TAtO07wp/zu1L4lIoYPnJh9pficQUcBsl9aqZiEM6UE
  • SHA256:jU9iFXflDW/FMRAFDaR0HMZ3zwsNxBa333A4Pl7ys1w
  • 73:10:37:bc:47:4b:24:dc:50:5f:7e:af:f7:b4:a0:b6
  • 29:18:e9:63:c5:b5:79:5c:bd:d6:3b:63:ce:7a:83:85

Compare the fingerprint to what you see above, and if one of the above fingerprints match, click (or type) "Yes" to connect. If you do not see the fingerprint listed above, please contact Sophira on IRC or by email.

Change your password

Change your password to something you can remember. Type:

passwd

and follow the prompts.

Set the system password

Your Dreamhack installation has a user named 'system', which has all the admin privs and owns all the system styles. The system account is the first account on the server. You need to set a password so you can log into it. Type:

$LJHOME/bin/upgrading/make_system.pl

Pick something you'll remember. (If you ever forget the system password, though, you can just run make_system.pl again and re-set it.)

Get acquainted with the command line

If you haven't used a command line before, it can be a strange experience. You may want to check out the Command line tutorial before carrying on, as it explains a few of the concepts that we'll be using in the sections below.

Edit the config files

You'll need to edit a few config files to make for easier development. Do the following:

cd $LJHOME
nano -w etc/config.pl

(The "nano" text editor is probably the best one for new developers. If you're more experienced, or want to try something a little more powerful, check out the list of editors at the Configuring editors page.)

You'll need to use the arrow keys to scroll through the file when using nano, because it won't respond to the mouse.

Take a look for the following line:

$USE_ACCT_CODES = 1;

This line governs whether invite codes are used. If the value is 1, then new accounts will need invites before they can be created. If the value is 0, then anybody can create an account. You can edit this value, if you like.

When you're done, press Ctrl-X to exit nano. It'll ask you if you want to save - press Y. It'll then ask you where you want to save the file. At this point, just press RETURN; you already told nano where to save it when you launched it, and pressing RETURN tells nano just to use that. You'll then find yourself back at the command line.

You should also edit your $LJHOME/ext/local/etc/config-local.pl file for some other local settings:

cd $LJHOME
nano -w ext/local/etc/config-local.pl

Values you may want to change and/or set:

$SITENAME = "Some LiveJournal Site";
$SITENAMESHORT = "YourSite";
$SITENAMEABBREV = "YS";
# these are all used in various places throughout the site

Remember to save and exit when you're done.

Start Apache

Once all of this is done, you're ready to start Apache. Type:

start-apache

Your Dreamhack will now appear at http://www.yourusername.hack.dreamwidth.net.

Update your code regularly

Before you do any development work, it's a good idea to update your code to the most recent version. See Dev Maintenance for instructions.

Get familiar with version control

Browse through Git How To and get familiar with how things work -- bookmark it so you can refer back to each section as needed.

Hack away!

You can now start hacking! For more information, check out the Category: Development category, especially the Beginning dev checklist, Dev Getting Started, and Programming Guidelines pages. If you run into problems, the #dreamwidth-dev IRC channel and the [info]dw_dev_training community are good places to go for help.

A quick and easy way to populate your Dreamhack with lots of users is to run Sophie's Script:_create-users.

We're looking forward to seeing your first patch!

Stop Apache

At the end of a Dreamhack session, remember to stop-apache so that the Dreamhack machine isn't running too many web servers that aren't being used.

A note about workers

Some features run asynchronously. That means they don't happen immediately when they are fired off. Instead, they get queued up to run later via Workers, at pre-programmed periods of time.

Features that run asynchronously via workers are either:

  • process heavy, such as search and notifications, or
  • require communication with remote sites we don't control, such as crossposts and imports.

If you aren't working on these features, then you don't need to worry about workers.

If you are working on these features, there are two different kinds of workers: TheSchwartz and Gearman. If you need them, recent Dreamhacks are already set up to let you use TheSchwartz (and Gearman?). If your Dreamhack is very old you can set up the TheSchwartz database using:

$LJHOME/bin/ljdb < /usr/share/doc/libtheschwartz-perl/schema.sql

then restarting Apache.