Skip to content

Conversation

@CBMR
Copy link

@CBMR CBMR commented Feb 13, 2019

@KingAtoki

The link to my trello board is in the READme. I will try to properly update it tomorrow.

table.increments();

table.string('title', 255).notNullable();
table.string('content', 10000).notNullable();

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

Suggested change
table.string('content', 10000).notNullable();
table.text('content').notNullable();


const server = require('./server/server');

PORT = process.env.PORT || 4500

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing a const here

Suggested change
PORT = process.env.PORT || 4500
const PORT = process.env.PORT || 4500

Copy link

@KingAtoki KingAtoki left a 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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants