prjseal / Clean-Starter-Kit-for-Umbraco-v9

MIT License
23 stars 13 forks source link
hacktoberfest

Clean Starter Kit for Umbraco 9, 10, 11 and 12

:zap: If you're looking for Clean for Umbraco V13+, see Clean!

Latest Release Details:

To try it out on Windows, Mac or Linux, make sure you have downloaded the latest .Net 6 SDK and then run this block of commands in a folder somewhere.

# Ensure we have the latest Umbraco templates
dotnet new -i Umbraco.Templates

# Create solution/project
dotnet new sln --name "MySolution"
dotnet new umbraco -n "MyProject" --friendly-name "Administrator" --email "admin@example.com" --password "1234567890" --development-database-type SQLite
dotnet sln add "MyProject"

#Add starter kit
dotnet add "MyProject" package clean

dotnet run --project "MyProject"
#Running