🏚🚵 Checkpoint

./package.json:7435365/45
./server.js:7435365/2177
This commit is contained in:
Glitch (hello-express) 2019-12-20 21:36:14 +00:00
parent e99e5d98f6
commit 343cf657a0
3 changed files with 929 additions and 4 deletions

View File

@ -10,10 +10,12 @@
"start": "node server.js"
},
"dependencies": {
"express": "^4.16.4"
"express": "^4.16.4",
"sqlite3": "*",
"sequelize": "*"
},
"engines": {
"node": "8.x"
"node": "10.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"

View File

@ -2,8 +2,60 @@
// where your node app starts
// init project
const express = require("express");
const app = express();
var express = require('express');
var Sequelize = require('sequelize');
var app = express();
// setup a new database
// using database credentials set in .env
var sequelize = new Sequelize('database', process.env.DB_USER, process.env.DB_PASS, {
host: '0.0.0.0',
dialect: 'sqlite',
pool: {
max: 5,
min: 0,
idle: 10000
},
// Security note: the database is saved to the file `database.sqlite` on the local filesystem. It's deliberately placed in the `.data` directory
// which doesn't get copied if someone remixes the project.
storage: '.data/database.sqlite'
});
var Readings;
// authenticate with the database
sequelize.authenticate()
.then(function(err) {
console.log('Connection has been established successfully.');
// define a new table 'readings'
Readings = sequelize.define('readings', {
timestamp: {
type: Sequelize.DATE
},
reading: {
type: Sequelize.INTEGER
}
});
setup();
})
.catch(function (err) {
console.log('Unable to connect to the database: ', err);
});
// populate table with default users
function setup(){
Readings.sync({force: true}).then(function() {
console.log(Readings);
});
User.sync({force: true}) // We use 'force: true' in this example to drop the table users if it already exists, and create a new one. You'll most likely want to remove this setting in your own apps
.then(function(){
// Add the default users to the database
for(var i=0; i<users.length; i++){ // loop through all users
User.create({ firstName: users[i][0], lastName: users[i][1]}); // create a new entry in the users table
}
});
}
// we've started you off with Express,
// but feel free to use whatever libs or frameworks you'd like through `package.json`.

File diff suppressed because it is too large Load Diff