Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 927 Bytes

README.md

File metadata and controls

53 lines (36 loc) · 927 Bytes

url-shortener

app

database (one-time setup)

import urls.sql with the administration tool of your choice

server

run the following in the server folder

  1. install Flask dependencies (one-time setup)
python -m venv env
env/Scripts/activate
pip install -r requirements.txt
  1. run app
python app.py

⚠️ assumes database credentials of root username, empty password, 3306 port

update configuration in settings.py if needed

client

access deployed app on https://urlshortener1.netlify.app/

-OR-

run the following in the client folder

  1. install Vue dependencies (one-time setup)
npm install
  1. run app
npm run serve

access local app on http://localhost:8080/ or otherwise as provided

tests

run this in the client folder for the unit tests here

npm run test:unit