Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
UNL_Annotate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Digital Experience Group
UNL_Annotate
Commits
97fe841d
Commit
97fe841d
authored
14 years ago
by
Brett Bieber
Browse files
Options
Downloads
Patches
Plain Diff
Add README with basic setup info.
parent
f40123b7
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README
+27
-0
27 additions, 0 deletions
README
with
27 additions
and
0 deletions
README
0 → 100644
+
27
−
0
View file @
97fe841d
README for UNL_Annotate
*********************** DB SETUP ***********************
Set up the database for the annotations:
CREATE USER 'annotate'@'localhost' IDENTIFIED BY 'annotate';
CREATE DATABASE IF NOT EXISTS `unl\_annotate` ;
GRANT ALL PRIVILEGES ON `unl\_annotate` . * TO 'annotate'@'localhost';
Then import the database structure in the db_structure.sql file.
mysql -u annotate -p unl_annotate < ./data/db_structure.sql
*********************** CONFIG FILES ***********************
Copy the configuration file:
cp config.sample.php config.inc.php
Customize the database connection info, and site URL, if necessary:
UNL_Annotate::$url = 'http://localhost/workspace/UNL_Annotate/www/';
UNL_Annotate::$db_pass = 'annotate';
Copy the .htaccess.sample file:
cp www/.htaccess.sample www/.htaccess
Customize the rewrite base, if necessary:
RewriteBase /workspace/UNL_Annotate/www/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment