A template for starting the final Play2Learn project with Django and Vue.
- If you don't have a GitHub account, create a new account. Otherwise, log in.
- Go to Use this template and select Create a new repository.

- In the Create a new repository menu, name your repository, add a short description, make sure your repo is Public if you plan to share your work, and select Create repository.

- You will now need to clone this repository so that you can work with it in Visual Studio Code:

- Open Visual Studio Code, go to Source Control and select Clone Repository.

- Paste in the copied URL and select Clone from URL

- After you select a folder location for your new repo, open the repo in Visual Studio Code.

- Create a Python virtual environment and install requirements.txt.
- Go to vue-games and run
npm install.
- Run
python manage.py runserverat the root to start the Django server. - Run
npm run serveat the vue-games folder to start the Vue server. - The Vue games will be working at:
- Anagram Hunt - http://127.0.0.1:8000/anagram-hunt/.
- Math Facts - http://127.0.0.1:8000/math-facts/.
If you want to learn more about how we integrated Vue and Django in this template, see Connecting Django and Vue.