Skip to content

Latest commit

 

History

History
56 lines (52 loc) · 1.01 KB

README.md

File metadata and controls

56 lines (52 loc) · 1.01 KB

video-titles

This project let you create titles for QueerJS videos.

As a first step install npm packages and start the local server by running on a terminal

yarn install && yarn start

If you use npm run

npm install && npm start

Print the welcome card

  1. Edit speakers.js using following content
module.exports = [
	{
		filename: 'welcome',
		name: 'Welcome to QueerJS',
		photo: ''
	}
];
  1. On terminal type the following command to print out the speaker cards
yarn run shoot

If you use npm run

npm run shoot
  1. Generated images will be created in out folder

Print speaker cards

  1. Edit speakers.js speaker details
module.exports = [
	{
		filename: 'devname',
		name: 'Dev Name',
		photo: 'https://avatars.io/twitter/devname'
	}
];
  1. On terminal type the following command to print out the speaker cards
yarn run shoot

If you use npm run

npm run shoot
  1. Generated images will be created in out folder