فهرست منبع

What are strings even

Pitu 6 سال پیش
والد
کامیت
b1e7511593
2فایلهای تغییر یافته به همراه18 افزوده شده و 19 حذف شده
  1. 13 13
      nuxt.config.js
  2. 5 6
      src/api/database/seeds/initial.js

+ 13 - 13
nuxt.config.js

@@ -26,25 +26,25 @@ export default {
 		meta: [
 			{ charset: 'utf-8' },
 			{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
-			{ hid: 'theme-color', name: 'theme-color', content: process.env.META_THEME_COLOR },
-			{ hid: 'description', name: 'description', content: process.env.META_DESCRIPTION },
-			{ hid: 'keywords', name: 'keywords', content: process.env.META_KEYWORDS },
-			{ hid: 'apple-mobile-web-app-title', name: 'apple-mobile-web-app-title', content: process.env.SERVICE_NAME },
-			{ hid: 'application-name', name: 'application-name', content: process.env.SERVICE_NAME },
+			{ hid: 'theme-color', name: 'theme-color', content: `${process.env.META_THEME_COLOR}` },
+			{ hid: 'description', name: 'description', content: `${process.env.META_DESCRIPTION}` },
+			{ hid: 'keywords', name: 'keywords', content: `${process.env.META_KEYWORDS}` },
+			{ hid: 'apple-mobile-web-app-title', name: 'apple-mobile-web-app-title', content: `${process.env.SERVICE_NAME}` },
+			{ hid: 'application-name', name: 'application-name', content: `${process.env.SERVICE_NAME}` },
 			// { hid: 'msapplication-config', name: 'msapplication-config', content: `${process.env.DOMAIN}/browserconfig.xml` },
 			{ hid: 'twitter:card', name: 'twitter:card', content: 'summary_large_image' },
-			{ hid: 'twitter:site', name: 'twitter:site', content: process.env.META_TWITTER_HANDLE },
-			{ hid: 'twitter:creator', name: 'twitter:creator', content: process.env.META_TWITTER_HANDLE },
-			{ hid: 'twitter:title', name: 'twitter:title', content: process.env.SERVICE_NAME },
-			{ hid: 'twitter:description', name: 'twitter:description', content: process.env.META_DESCRIPTION },
+			{ hid: 'twitter:site', name: 'twitter:site', content: `${process.env.META_TWITTER_HANDLE}` },
+			{ hid: 'twitter:creator', name: 'twitter:creator', content: `${process.env.META_TWITTER_HANDLE}` },
+			{ hid: 'twitter:title', name: 'twitter:title', content: `${process.env.SERVICE_NAME}` },
+			{ hid: 'twitter:description', name: 'twitter:description', content: `${process.env.META_DESCRIPTION}` },
 			{ hid: 'twitter:image', name: 'twitter:image', content: `${process.env.DOMAIN}/share.jpg` },
-			{ hid: 'og:url', property: 'og:url', content: process.env.DOMAIN },
+			{ hid: 'og:url', property: 'og:url', content: `${process.env.DOMAIN}` },
 			{ hid: 'og:type', property: 'og:type', content: 'website' },
-			{ hid: 'og:title', property: 'og:title', content: process.env.SERVICE_NAME },
-			{ hid: 'og:description', property: 'og:description', content: process.env.META_DESCRIPTION },
+			{ hid: 'og:title', property: 'og:title', content: `${process.env.SERVICE_NAME}` },
+			{ hid: 'og:description', property: 'og:description', content: `${process.env.META_DESCRIPTION}` },
 			{ hid: 'og:image', property: 'og:image', content: `${process.env.DOMAIN}/share.jpg` },
 			{ hid: 'og:image:secure_url', property: 'og:image:secure_url', content: `${process.env.DOMAIN}/share.jpg` },
-			{ hid: 'og:site_name', property: 'og:site_name', content: process.env.SERVICE_NAME }
+			{ hid: 'og:site_name', property: 'og:site_name', content: `${process.env.SERVICE_NAME}` }
 		],
 		link: [
 			{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css?family=Nunito:300,400,600,700' },

+ 5 - 6
src/api/database/seeds/initial.js

@@ -20,12 +20,11 @@ exports.seed = async db => {
 			isAdmin: true
 		});
 		console.log();
-		console.log('====================================================');
-		console.log('==    Successfully created the admin account.     ==');
-		console.log('====================================================');
-		console.log('==      Run `yarn api` and `yarn site` next       ==');
-		console.log('== preferably with pm2 or tmux to keep them alive ==');
-		console.log('====================================================');
+		console.log('=========================================================');
+		console.log('==       Successfully created the admin account.       ==');
+		console.log('=========================================================');
+		console.log('==    Run `pm2 start pm2.json` to start the service    ==');
+		console.log('=========================================================');
 		console.log();
 	} catch (error) {
 		console.error(error);