Skip to content

MacCassidy/UNCW_Fit_Shuffle2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UNCW_Fit_Shuffle2

CSC 450 Final Project
Team Dirty Devs

A mobile web fitness application.

Local Server Setup

Python Dependency Installations

Intall Python and ensure pip is installed with it.

You may also want to follow this guide for pip venv to setup a virtual environment to avoid affecting other python code and environments, but this is not required. Currently our setup is not using pipenv to manage the package and dependencies, so you would need to use venv if you want to avoid affecting other Python or package versions.

Prior to running the pip install commands below, you may also want to run pip install wheel since some of the packages use wheel which allows you to avoid recompiling software every time during pip installs. However, it is not required and will still complete package installs even if you see messages about wheel.

Run pip install -r requirements.txt from this directory.

MySQL Database Setup

  • Install MySQL Server and ensure it is running
  • Run the following SQL queries and scripts from the MySQL server:
CREATE DATABASE tempdb1;
use tempdb1;
source \your\path\to\file\create_Tables.sql;

About

first attempt at the app for school

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published