Skip to content

Commit 734badd

Browse files
committed
Ajout de configuration pour la compilation du CSS sass
1 parent 7257aa8 commit 734badd

File tree

7 files changed

+22
-1
lines changed

7 files changed

+22
-1
lines changed

.buildpacks

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
https://github.com/heroku/heroku-buildpack-php.git
2+
https://github.com/heroku/heroku-buildpack-ruby.git

.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.sass-cache
2-
css/styles.css
2+
css/styles.css
3+
.bundle/config

.profile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
sass app/css

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
ruby '2.0.0'
3+
4+
gem 'sass'

Gemfile.lock

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
sass (3.2.12)
5+
6+
PLATFORMS
7+
ruby
8+
9+
DEPENDENCIES
10+
sass

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: sh boot.sh

0 commit comments

Comments
 (0)