diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..83e0ed6 --- /dev/null +++ b/.env.example @@ -0,0 +1,12 @@ +AWS_ACCESS_KEY_ID= +AWS_SECRET_ACCESS_KEY= +AWS_S3_BUCKET= + +MYSQL_USER=root +MYSQL_PASSWORD=secret +MYSQL_DATABASE=phase2 + +TWITTER_CONSUMER_KEY= +TWITTER_CONSUMER_SECRET= +TWITTER_CALLBACK_URL=http://localhost:8000/twitter_callback +SESSION_SECRET= diff --git a/.eslintrc.js b/.eslintrc.js index a82dd6c..ed8cddf 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -19,6 +19,7 @@ module.exports = { ], // add your custom rules here rules: { + 'prettier/prettier': ['error', {'printWidth': 100}], 'nuxt/no-cjs-in-config': 'off' } } diff --git a/layouts/default.vue b/layouts/default.vue index 510c4a3..feed5d5 100644 --- a/layouts/default.vue +++ b/layouts/default.vue @@ -1,10 +1,6 @@