Skip to content

Commit 15548dd

Browse files
author
Pieter Colpaert
committed
Merge pull request #11 from openknowledgebe/Development
First release
2 parents 701eb8d + 7f11276 commit 15548dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+3611
-2
lines changed

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.log
26+
*.sql
27+
*.sqlite
28+
29+
# OS generated files #
30+
######################
31+
.DS_Store
32+
.DS_Store?
33+
._*
34+
.Spotlight-V100
35+
.Trashes
36+
ehthumbs.db
37+
Thumbs.db
38+
39+
# JetBrains PhpStorm #
40+
######################
41+
.idea
42+
43+
# Project Ignores #
44+
###################
45+
.sass-cache
46+
.tmp
47+
bower_components
48+
dist
49+
node_modules

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2121
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2222
OTHER DEALINGS IN THE SOFTWARE.
2323

24-
For more information, please refer to <http://unlicense.org>
25-
24+
For more information, please refer to <http://unlicense.org>

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
# dcat-be
22
Website of the Belgian application profile of DCAT
3+
4+
# Deployment
5+
6+
Make sure bower is installed
7+
8+
> npm install -g bower
9+
10+
Go to root folder of project in CLI
11+
12+
Run following command:
13+
14+
> bower update
15+
16+
This should install the jQuery, Modernizr and FontAwesome packages
17+
18+
Everything should now be into place to upload the site.

bower.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "dcat",
3+
"version": "0.0.1",
4+
"authors": [
5+
"Pieter Colpaert",
6+
"Sander Meert",
7+
"Lara De Raes"
8+
],
9+
"description": "Website for DCAT Belgium",
10+
"main": "app.js",
11+
"keywords": [
12+
"html5",
13+
"css3",
14+
"JavaScript"
15+
],
16+
"license": "MIT",
17+
"homepage": "http://dcat.be/",
18+
"private": true,
19+
"ignore": [
20+
"**/.*",
21+
"node_modules",
22+
"bower_components"
23+
],
24+
"devDependencies": {
25+
"modernizr": "~2.8.3",
26+
"jquery": "~2.1.3",
27+
"fontawesome": "~4.3.0"
28+
},
29+
"dependencies": {
30+
"modernizr": "~2.8.3",
31+
"jquery": "~2.1.3",
32+
"fontawesome": "~4.3.0",
33+
"bootstrap": "~3.3.4"
34+
}
35+
}

config.rb

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Require any additional compass plugins here.
2+
# require "susy"
3+
#require "sass-globbing"
4+
# require "breakpoint"
5+
6+
#Folder settings
7+
project_type = :stand_alone
8+
http_path = "/"
9+
relative_assets = true #because we're not working from the root
10+
css_dir = "css" #where the CSS will saved
11+
sass_dir = "css" #where our .scss files are
12+
images_dir = "img" #the folder with your images
13+
javascripts_dir = "js"
14+
15+
# You can select your preferred output style here (can be overridden via the command line):
16+
output_style = :expanded # After dev :compressed
17+
18+
# To disable debugging comments that display the original location of your selectors. Uncomment:
19+
line_comments = false
20+
21+
# Obviously
22+
preferred_syntax = :scss
23+
24+
# Sourcemaps for Chrome DevTools
25+
26+
sass_options = {:sourcemap => true}
27+
# sass_options = {:debug_info => true}
28+
sourcemap = true

0 commit comments

Comments
 (0)