A project for a little app that allows users to create lists of movies together and randomly pick one to watch.
Demo here
Figma Design here
For this repo to work you will need to set-up a database in mongo, the backend repo and an auth key for "the big movie databse" --> follow instructions here
Once you have setup a database and the back-end, add an .env file in the folder 'film_lottery' directory with the following template:
VUE_APP_BACKEND_URL='http://localhost:<Backend port number>'
VUE_APP_BASE_URL='http://localhost:<Frontend port number>'
VUE_APP_MONGO_DATABASE='<database name>'
VUE_APP_MONGO_LIST_COLLECTION='<collection name for lists>'
Once the above is set up run:
cd film_lottery
npm install
npm run dev
...
npm run serve
npm run build
npm run lint