An error occurred while loading the file. Please try again.
  • Patrick Ade's avatar
    Implement user authentication and sensor data APIs · 667b5b56
    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
Gulpfile.js 314 bytes
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()