Skip to content

cjblomqvist/deploy-scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 

Repository files navigation

deploy-scripts

Makefile

Concatenates, minifies and renames for optimal caching CSS and JS files specified in HTML source. Also minifies HTML.

Usage

Makefile uses two tags in your file with HTML (can be raw HTML, ASP, PHP or any other file which contains HTML), to denote where and which CSS and JS files to concatenate and minify. By default, these are regular HTML comments with 'CONCAT:XXX' where XXX is either JS or CSS, but these can be easily modified. An example

Your index.html pre make
<html>

...


<!-- Below stylesheets will be minified and concatenated -->
<!-- CONCAT:CSS -->
<link rel="stylesheet" href="css/stylesheet1.css">
<link rel="stylesheet" href="css/stylesheet2.css">
<link rel="stylesheet" href="css/stylesheet3.css">
<!-- /CONCAT:CSS -->


...


<!-- Below script will not be minified and concatenated -->
<!-- Also, below script would have broken the makefile script because only local files are allowed -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<!-- Below scripts will however -->
<!-- CONCAT:JS -->
<script src="js/script1.js"></script>
<script src="js/script1.js"></script>
<script src="js/script1.js"></script>
<!-- /CONCAT:JS -->


...

</html>
Your index.html post make
  • Note: Comments are kept just in order for clarity of what is actually modified
  • Note2: in the filenames of the concatenated and minified files is the md5hash of the file. This is done in order to optimize caching.
<html>

...


<!-- Below stylesheets will be minified and concatenated -->
<link rel="stylesheet" href="css/all.<md5hash>.css">


...


<!-- Below script will not be minified and concatenated -->
<!-- Also, below script would have broken the makefile script because only local files are allowed -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<!-- Below scripts will however -->
<script src="js/all.<md5hash>.js"></script>


...

</html>

Requirements

You need to specify a library for HTML, CSS and JS optimization/minification. Default is:

This can easily be modified for your own use. Note that you need to specify the location of the CLIs of respective optimizer/minifcator in the Makefile before using it.

ftp_upload_script.sh

Shell script for uploading folder to FTP using ncftp. Usage:

sh /your/place/of/the/script/ftp_upload_script.sh <host> <user> <password> <destination folder on ftp> <source folder on local>

Requirements

  • ncftp

MIT License

Copyright (c) 2012 by Carl-Johan Blomqvist

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages