-
Notifications
You must be signed in to change notification settings - Fork 446
Abdiel Fernandez #491
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Abdiel Fernandez #491
Conversation
| table.increments(); | ||
|
|
||
| table.string('title', 255).notNullable(); | ||
| table.string('content', 10000).notNullable(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could also do something like this
| table.string('content', 10000).notNullable(); | |
| table.text('content').notNullable(); |
|
|
||
| const server = require('./server/server'); | ||
|
|
||
| PORT = process.env.PORT || 4500 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing a const here
| PORT = process.env.PORT || 4500 | |
| const PORT = process.env.PORT || 4500 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything looks 100% great! You code is clean and you used all the best practices. Nice job!
Authentication
@KingAtoki
The link to my trello board is in the READme. I will try to properly update it tomorrow.