This application is in development. Because of this, you must already have Python 3 and Django in order for this application to work on your computer. To download python, visit https://www.python.org/downloads/. To download Django, visit https://www.djangoproject.com/download/.
- Open a new terminal. Navigate to or create the directory you want this app to go in.
- Clone the repository. You can do this by navigating to the directory you want the app in, and then running
git clone https://github.com/Drew-Watson-117/NationalParksApp
. - Navigate to the NationalParksApp directory. From the directory you navigated to in Step 2, you can run
cd NationalParksApp
. - Run the command
python manage.py migrate
. This will migrate the necessary files over to your computer. - Run the command
python manage.py runserver
. This will begin running a local server that will host the site. - Go to http://localhost:8000/parksApp/ in your favorite web browser.
- When you want to exit the site, close the browser window, and go to your terminal and press Ctrl-C.