Moving your Dreamwidth installation to use Github
Contents
On github, fork dreamwidth's dw-free and dw-nonfree repositories
First, create an account on Github. Then, you will need to fork these two repositories:
Go to each of their pages, and click the "Fork" button. This sets up your own copy of Dreamwidth's code which use to make and submit your changes.
Here's a quick overview of how the repositories will work together:
- dw-free is the main repository and goes into $LJHOME
- other repositories will go into $LJHOME/ext
- personal config files go into $LJHOME/ext/local
- All code from dw-free ($LJHOME) and the additional repos under $LJHOME/ext are automatically live when you start your server. There's no need to run any additional syncing steps anymore.
Now it's time to set things up:
Stop the server and all workers
# note: it's okay if it says "no process found". # That just means there was nothing to stop stop-apache killall worker-manager
Move your old $LJHOME aside
Don't delete it! Just move it out of the way like this:
mv $LJHOME $LJHOME-old
This will let you access any changes you still have on the old repositories.
Set up dw-free
Replace the USERNAME sections of the URL with your Github username. This will make your repository an authenticated version that can push changes back to Github, as opposed to only being able to pull them.
# clone a copy of the repository onto your machine git clone https://USERNAME@github.com/USERNAME/dw-free.git $LJHOME cd $LJHOME # and let's make it aware of the dreamwidth repository so we can grab updates later git remote add dreamwidth https://github.com/dreamwidth/dw-free git fetch dreamwidth # we also want to sync up with the main branches git branch --set-upstream develop dreamwidth/develop git branch --set-upstream master dreamwidth/master # now set up the folder for external repositories / modules mkdir $LJHOME/ext cd $LJHOME/ext
## copy over your config files, and tell them to take priority ## over config files in any of the repos mkdir -p local/etc echo "highest" > local/.dir_scope cp $LJHOME-old/etc/config* local/etc/
For dev servers (not clone sites) set up dw-nonfree
git clone https://USERNAME@github.com/USERNAME/dw-nonfree.git cd dw-nonfree git remote add dreamwidth https://github.com/dreamwidth/dw-nonfree git fetch dreamwidth git branch --set-upstream develop dreamwidth/develop git branch --set-upstream master dreamwidth/master cd ..
Run checkconfig
cd $LJHOME bin/checkconfig.pl
Non-dreamhack users:
- install .deb packages if given by bin/checkconfig.pl
- install any modules without .deb packages via cpan (like theSchwartz)
- check any personal scripts you have to make sure they aren't affected by the directory config change
Start the server again
start-apache
Extras
You may be interested in git settings and git autocomplete to make your life easier.
If you also want to view your repositories on your computer, GitHub has versions for Windows and OSX: