Files
OurUmbraco/README.md
T

44 lines
1.9 KiB
Markdown
Raw Normal View History

2012-12-18 08:28:03 +01:00
Our Umbraco
2012-12-17 23:26:00 -08:00
==========
2012-12-18 14:57:05 +01:00
Complete source of the umbraco community site, our.umbraco.org.
##Database restore
2012-12-18 15:28:50 +01:00
Download the SQL Server Database from: https://dl.dropbox.com/u/3006713/our-cleaned-db-2008R2.zip?dl=1
2012-12-18 08:27:14 +01:00
2012-12-18 15:28:50 +01:00
Restore the database to SQL Server 2008 R2 (at least R2 is required!) and update the connection string (umbracoDbDSN) in OurUmbraco.Site/web.config
2012-12-18 14:57:05 +01:00
##Build in visual studio
2012-12-17 23:26:00 -08:00
Make sure to allow NuGet Package Restore in VS (Tools > Options > Package Manager).
2012-12-18 10:37:26 +01:00
2012-12-18 15:28:50 +01:00
##Logging in
All users and members use the same password: Not_A_Real_Password
2012-12-18 14:57:05 +01:00
2012-12-18 15:28:50 +01:00
To log in, try root / Not_A_Real_Password for the backoffice and member423@non-existing-mail-provider.none / Not_A_Real_Password for the frontend.
##Syncing your fork with the original repository
2012-12-18 10:37:26 +01:00
To sync your fork with this original one, you'll have to add the upstream url once:
2012-12-18 10:37:51 +01:00
2012-12-18 14:57:05 +01:00
git remote add upstream git://github.com/umbraco/OurUmbraco.git
2012-12-18 10:37:26 +01:00
And then each time you want to get the changes:
2012-12-18 10:37:51 +01:00
2012-12-18 14:57:05 +01:00
git fetch upstream
Yes, this is a scary command line operation, don't you love it?! :-D
##Ignore your local web.config
To ensure you don't accidently commit your local web.config file, you can tell git ignore any changes done to this file.
Simply run the below command in git bash:
git update-index --assume-unchanged OurUmbraco.Site/web.config
2012-12-18 10:37:26 +01:00
.. Yes, this is a scary command line operation, don't you love it?! :-D
2012-12-18 14:20:06 +01:00
2012-12-18 17:29:09 +01:00
##Continuous deploys
2012-12-18 15:28:50 +01:00
Any updates to the main repo (github.com/umbraco/OurUmbraco) get deployed automatically to http://our.sandbox.umbraco.org/ - So when your pull request gets accepted, your changes should show up there within a few minutes.
2012-12-18 15:31:02 +01:00
##Projects section
Note: the projects section doesn't work well at the moment, due to missing Marketplace.*.dll files. We need to seperate our some of the Deli processes into a seperate DLL so you won't be able to figure out our "secret" processes, the cleaned up DLLs will come soon.