Small PHP app for creating a simple bio page with social auth and editable links.
This project expects a MySQL-compatible database named linkify.bio by default.
-
Create the database and tables:
SOURCE database/schema.sql;
Or from the shell:
mysql -u root -p < database/schema.sql -
Update
components/configuration.phpwith your local database credentials if needed.
The checked-in schema covers the tables the app currently uses:
users- stores profile data plus Instagram and Twitter auth fields
links- stores each user link, enabled state, impressions, and clicks
The SQL was inferred from the current PHP queries so new installs do not have to reverse engineer the table structure from the source.