Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Instructions to set up the slides locally #1

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 25 additions & 0 deletions README.md
Expand Up @@ -35,3 +35,28 @@ What is Object-Oriented Programming and Functional Programming and how can they


We'll also get started on some projects that you can do with your new Python skills. We'll also get started on some projects that you can do with your new Python skills.


## Using this repository locally

Make sure you have git installed on your computer, and open a terminal window.

You'll need to clone this repository to your computer:

git clone https://github.com/calebsmith/gdi-intro-python.git

reveal.js is stored as a git submodule. To set up the reveal.js code:

cd gdi-intro-python
git submodule init
git submodule update

(Note: Some internet connections (including our class location) block SSH
connections on Port 22. If you get an error running the above, edit
``gdi-into-python/.git/modules/reveal/config`` and change the line
``url = git://git@github.com/girldevelopit/reveal.js.git`` to
``url = https://github.com/girldevelopit/reveal.js.git`` and run the above
commands again.)

To get the code running, run ``python server.py`` from the gdi-intro-python
directory.

Finally, navigate to ``http://localhost:8000/`` in your browser.