An error occurred while loading the file. Please try again.
-
Patrick Ade authored
- Added JWT authentication with login and registration endpoints. - Created sensor data retrieval endpoints for room and sensor availability. - Integrated InfluxDB for data handling and added necessary routes. - Updated project dependencies to include django-ninja and pyjwt.
667b5b56
const gulp = require('gulp')
const sass = require('gulp-sass')
const concat = require('gulp-concat')
gulp.task('styles', function(done) {
gulp.src('styles/**/*.scss')
.pipe(sass({
errLogToConsole: true
}))
.pipe(gulp.dest('./public/stylesheets/'))
.pipe(concat('style.css'))
done()
})