mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-26 10:43:35 +02:00
react-express-mongodb: rename server to backend
The goal here is to keep the same structure than the other examples. Also, considering that it has a "frontend" folder, the equivalent for the server should be "backend". Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
This commit is contained in:
parent
e29f0d1c54
commit
be8875c9b6
16 changed files with 8 additions and 8 deletions
14
react-express-mongodb/backend/models/todos/todo.model.js
Normal file
14
react-express-mongodb/backend/models/todos/todo.model.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
/**
|
||||
* Created by Syed Afzal
|
||||
*/
|
||||
const mongoose = require('mongoose');
|
||||
|
||||
var Todo = mongoose.model('Todo', {
|
||||
text : {
|
||||
type: String,
|
||||
trim: true,
|
||||
required: true
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = {Todo};
|
Loading…
Add table
Add a link
Reference in a new issue