-
Notifications
You must be signed in to change notification settings - Fork 53
Your First User and Collection
This is a guide to the post-installation process, or what you do after FromThePage is up and running on your own server.
Sign up for an account under a username which will be used for administrative tasks.
Connect to the MySQL database and find the ID for the user you just created (consult config/database.yml for the relevant username, password, and database values):
mysql --user=rails --password=rails --database=diary_development
Once you are in the MySQL command line client, look through the users table for the record you just created.
mysql> select id, login from users;
Now look at the ID of that record and use it to make that user an admin user:
mysql> update users set admin=1 where id=100;
Sign up for an account under a username which will be used to manipulate works within a collection. This will be a "collection owner" account and will be publicly visible in the "About" screen of the collections page (for public collections). For institutional transcription projects, this might be the institution name or project name, like "Jones Library" or "Jones History Project".
As an administrative user, go to the user list on the main dashboard and select the user. Click the "owner" box and hit save.
- Log in as the collection owner
- Click the "Start a Project" tab. See Preparing a Work for Transcription