4IRL / urls4irl

Sharing URL's with friends.
3 stars 0 forks source link
webapp

URLS4IRL

Share URLs With People You Know!

Ever shared a link with someone and then tried to search through your chat history to find it again?

URLS4IRL was born with the idea to be able to easily share URLs with friends or coworkers.

It allows each user to create one or many UTubs (URL Tubs) where they can:

It is built on Flask, and uses a SQLite database with an eye towards migrating to a PostgreSQL database in the future.

This is our first web app and we are exciting to share it with the world! Come watch us grow!

tags: URLs, Flask, Python, HTML, CSS, Javascript, PostgreSQL

:memo: Progress

Step 1: Get the Product :arrow_right: IRL :arrow_left: (Into Real Life)!

:rocket:

Step 2: Goals for Publicity

How about we add some goals we need to hit before we can go fully public?

Step 3: Reach Goals

Let's get some reach goals, shall we?


Setting Up Migrations

FLASK_ENV environment variable must be set to run while in the main directory.

set FLASK_ENV=run
flask db init

Now the migrations folder is setup.


Running Tests

From this directory, run the following command:

python -m pytest -sv

This will print out a log as well as whether or not tests passed.

All tests are included in the tests directory