Skip to content

Commit

Permalink
Merge pull request #11 from openknowledgebe/Development
Browse files Browse the repository at this point in the history
First release
  • Loading branch information
Pieter Colpaert committed May 10, 2015
2 parents 701eb8d + 7f11276 commit 15548dd
Show file tree
Hide file tree
Showing 62 changed files with 3,611 additions and 2 deletions.
49 changes: 49 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# JetBrains PhpStorm #
######################
.idea

# Project Ignores #
###################
.sass-cache
.tmp
bower_components
dist
node_modules
3 changes: 1 addition & 2 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ 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.

For more information, please refer to <http://unlicense.org>

For more information, please refer to <http://unlicense.org>
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# dcat-be
Website of the Belgian application profile of DCAT

# Deployment

Make sure bower is installed

> npm install -g bower
Go to root folder of project in CLI

Run following command:

> bower update
This should install the jQuery, Modernizr and FontAwesome packages

Everything should now be into place to upload the site.
35 changes: 35 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"name": "dcat",
"version": "0.0.1",
"authors": [
"Pieter Colpaert",
"Sander Meert",
"Lara De Raes"
],
"description": "Website for DCAT Belgium",
"main": "app.js",
"keywords": [
"html5",
"css3",
"JavaScript"
],
"license": "MIT",
"homepage": "http://dcat.be/",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components"
],
"devDependencies": {
"modernizr": "~2.8.3",
"jquery": "~2.1.3",
"fontawesome": "~4.3.0"
},
"dependencies": {
"modernizr": "~2.8.3",
"jquery": "~2.1.3",
"fontawesome": "~4.3.0",
"bootstrap": "~3.3.4"
}
}
28 changes: 28 additions & 0 deletions config.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Require any additional compass plugins here.
# require "susy"
#require "sass-globbing"
# require "breakpoint"

#Folder settings
project_type = :stand_alone
http_path = "/"
relative_assets = true #because we're not working from the root
css_dir = "css" #where the CSS will saved
sass_dir = "css" #where our .scss files are
images_dir = "img" #the folder with your images
javascripts_dir = "js"

# You can select your preferred output style here (can be overridden via the command line):
output_style = :expanded # After dev :compressed

# To disable debugging comments that display the original location of your selectors. Uncomment:
line_comments = false

# Obviously
preferred_syntax = :scss

# Sourcemaps for Chrome DevTools

sass_options = {:sourcemap => true}
# sass_options = {:debug_info => true}
sourcemap = true
Loading

0 comments on commit 15548dd

Please sign in to comment.