You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the source: git clone git@github.com:your-github-id/basic-usersite.git
(replace your-github-id)
Add the master project as an upstream remote (this is where you'll send pull requests) cd basic-usersite && git remote add upstream git@github.com:appoxy/basic-usersite.git
Make sure everything is up to date: git fetch upstream
% sqlite3 basic-usersite.sqlite3
SQLite version 3.7.7 2011-06-23 19:49:22
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> update users set usertype='admin';
sqlite> .quit