Skip to content

Instantly share code, notes, and snippets.

View Domitnator's full-sized avatar

Alfred Brockötter Domitnator

View GitHub Profile
@garpunkal
garpunkal / umbraco8cleanup.sql
Last active October 9, 2023 08:04
Umbraco 8 clean-up scripts
PRINT '=============================================='
PRINT 'CLEARING LOG AND AUDIT TABLES'
PRINT '=============================================='
GO
PRINT '=============================================='
PRINT 'TRUNCATE TABLE umbracoLog'
PRINT '=============================================='
GO
@benmccallum
benmccallum / ..Instructions
Last active February 28, 2020 09:00 — forked from benosman/.deployment
Hosting Nuxt on Azure App Service (iisnode) with custom Git based deployment (kudu)
Previously this gist had a series of files showing a working setup, but,
@burkeholland found a much easier way and demonstrates it here:
https://github.com/burkeholland/nuxt-appservice-windows
Essentially, you'll:
1. add a .deployment file to instruct kudu to run `npm install` for you,
2. leverage npm tasks' `postinstall` hook in package.json to trigger the full nuxt build,
3. add a server.js file in the root that `require`s the default server\index.js file that a nuxt app will already have
Step 3 will be noticed by kudu, which will: