vicklyne / watchlistv2

Updated run at the watchlist application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Watchlist v2

Project description

This is an update of my previous watchlist project. It allows users to find movies and write reviews for those movies.

NB Please note the project is still in development

Set-up instructions

  1. You will need to have Python3.6 installed in your machine together with venv and pip.
  2. Set up the virtual environment and activate it
$ python3.6 -m venv virtual
$ source virtual/bin/activate
  1. Install all the necessary modules
$ pip install -r requirements.txt
  1. Get an API key from TMDB

  2. Create an Instance folder at your project root.

$ mkdir instance
  1. Create a config.py file inside the instance folder
$ touch instance/config.py
  1. Paste in the API key inside the new config.py file
  MOVIE_API_KEY='Your API KEY HERE'
  1. Run the application
$ python3.6 run.py

Branches

Each branch tackles a specific part in the application development

  1. Master: The primary branch with all the content.
  2. 01-Templates: Introduction to templates and template variables.
  3. 02-Dynamic-routes : Creating a dynamic view function.
  4. 03-Configurations: Set up the projects configuration file.
  5. 04-Control-Flows: Added control flows in our template files.
  6. 05-Storing-API-Keys: Store API key in instance folder
  7. 06-Movie Model: Movie model and test class
  8. 07-API-call: Make API call
  9. 08-For-Loops-Macros:Looping through items using Macros
  10. 09-Base-Template: Add base template and extend to template files
  11. 10-Adding-Bootstrap: Added Bootstrap extension and structured the page
  12. 11.Adding-CSS : Added css file and styled the page
  13. 12-Movie-Page: Add a movie page to display details on a single movie.

License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so.

About

Updated run at the watchlist application


Languages

Language:Python 63.7%Language:HTML 25.6%Language:CSS 10.7%