https://github.com/yottaawesome/fullstack-fundamentals
A repository where I work through Udacity's fullstack foundations free course.
https://github.com/yottaawesome/fullstack-fundamentals
List: fullstack-fundamentals
python python-flask
Last synced: about 4 hours ago
JSON representation
A repository where I work through Udacity's fullstack foundations free course.
- Host: GitHub
- URL: https://github.com/yottaawesome/fullstack-fundamentals
- Owner: yottaawesome
- License: mit
- Created: 2019-03-15T05:36:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-02T09:32:09.000Z (about 7 years ago)
- Last Synced: 2025-11-09T05:03:13.443Z (8 months ago)
- Topics: python, python-flask
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fullstack Fundamentals
## Introduction
This repository contains my exercise code from Udacity's Full Stack Foundations course (https://www.udacity.com/course/full-stack-foundations--ud088). My solution code differs from Udacity's solutions code (https://github.com/udacity/Full-Stack-Foundations/) due to me using Python 3.6.7 instead of Python 2x.
## Status
_Complete._ Only maintenance updates now.
## Setting up
Each module is divided into its own folder. To initially set up a module, do the following:
* `cd` into a module folder;
* Create a Python 3.6.7 virtual environment: `virtualenv env`;
* Activate the Python virtual environment: `source env/bin/activate`;
* Install dependencies: `pip install -r requirements.txt`;
* Create the SQLite DB by running the Python scripts database_setup.py and lotsofmenus.py in that order.
Once you have performed the above, you can then simply run the relevant script (usually webserver.py or crud-webserver.py) to start the server up on port 8080. Control+C terminates the webserver and executing `deactivate` deactivates the Python virtual environment.