#Adding an existing project to GitHub using the command line
Simple steps to add existing project to Github.
In Terminal, change the current working directory to your local project.
##2. Initialize the local directory as a Git repository.
git init
| from sqlalchemy import create_engine, Table, Column, Integer, Unicode, MetaData, String, Text, update, and_, select, func, types | |
| # create engine, reflect existing columns, and create table object for oldTable | |
| srcEngine = create_engine('mysql+mysqldb://username:password@111.111.111.111/database') # change this for your source database | |
| srcEngine._metadata = MetaData(bind=srcEngine) | |
| srcEngine._metadata.reflect(srcEngine) # get columns from existing table | |
| srcTable = Table('oldTable', srcEngine._metadata) | |
| # create engine and table object for newTable | |
| destEngine = create_engine('mysql+mysqldb://username:password@localhost/database') # change this for your destination database |
See the new site: https://postgresisenough.dev