-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from openknowledgebe/Development
First release
- Loading branch information
Showing
62 changed files
with
3,611 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.