fixed conflicts

This commit is contained in:
Senad Uka
2015-07-05 13:24:09 +02:00
4 changed files with 21 additions and 8 deletions

View File

@@ -16,7 +16,8 @@ before do
content_type :json
# TODO: before running to production change this so that only specific
# domain is allowed
headers 'Access-Control-Allow-Origin' => 'http://192.168.1.35:3001',
headers 'Access-Control-Allow-Origin' => 'http://localhost:3001',
'Access-Control-Allow-Methods' => ['OPTIONS', 'GET', 'POST','PUT'],
'Access-Control-Allow-Headers' => 'Origin, X-Requested-With, Content-Type, Accept',
'Access-Control-Expose-Headers' => 'X-Total-Count',

View File

@@ -130,8 +130,8 @@ ActiveRecord::Schema.define(version: 20150614050336) do
t.datetime "updated_at", null: false
t.string "tags"
t.json "traits"
t.integer "supplier_id"
t.decimal "weight", precision: 5, scale: 3
t.integer "supplier_id"
t.integer "delivery_time_estimation_id"
t.integer "brand_id"
end

2
front-ui/.gitignore vendored
View File

@@ -18,6 +18,8 @@ coverage
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
build/**/*.js
build/**/*.css
build/*.js
build/*.css

View File

@@ -1,7 +1,7 @@
module.exports = function(grunt) {
grunt.initConfig({
browserify: {
basic: {
dev: {
src: ['app/ribica.js'],
dest: 'build/ribica.bundle.js',
options: {
@@ -12,7 +12,16 @@ module.exports = function(grunt) {
},
watch: true
}
},
prod: {
src: ['app/ribica.js'],
dest: 'build/ribica.bundle.js',
options: {
transform: ['reactify'],
browserifyOptions: {
standalone: 'RIBICA'
}
}
}
},
watch: {
@@ -39,7 +48,7 @@ module.exports = function(grunt) {
uglify: {
my_target: {
files: {
'build/ribica.min.js': ['build/ribica.js']
'build/ribica.js': ['build/ribica.js']
}
}
},
@@ -47,7 +56,8 @@ module.exports = function(grunt) {
dev: {
options: {
variables: {
apiEndpoint: 'http://192.168.1.35:4567'
apiEndpoint: 'http://localhost:4567'
}
}
},
@@ -103,7 +113,7 @@ module.exports = function(grunt) {
grunt.registerTask('default', []);
grunt.registerTask('config-dev', ['config:dev', 'replace']);
grunt.registerTask('config-prod', ['config:prod', 'replace']);
grunt.registerTask('dev', ['browserify', 'config-dev', 'concat:css', 'concat:js', 'connect:server:keepalive']);
grunt.registerTask('build', ['browserify', 'config-prod', 'concat:css', 'concat:js']);
grunt.registerTask('dev', ['browserify:dev', 'config-dev', 'concat:css', 'concat:js', 'connect:server:keepalive']);
grunt.registerTask('build', ['browserify:prod', 'config-prod', 'concat:css', 'concat:js', 'uglify']);
};