Skip to content

Commit

Permalink
Corrected links in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nosivads committed Nov 6, 2023
1 parent f510044 commit a31c258
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ The [OAI Data Provider](https://apps.library.caltech.edu/ead2dc/) is a web appli
Paul B. MacCready Papers ca. 1931-2002, Caltech Archives

* [Finding Aid](https://collections.archives.caltech.edu/repositories/2/resources/197)
* [ArchivesSpace OAI Data Provider output](https://caltechlibrary.github.io/ead2dc/maccready-ead.xml)
* [OAI Static Repository created by ead2dc](https://caltechlibrary.github.io/ead2dc/maccready-dc.xml)
* [ArchivesSpace OAI Data Provider output](https://caltechlibrary.github.io/ead2dc/xml/maccready-ead.xml)
* [OAI Static Repository created by ead2dc](https://caltechlibrary.github.io/ead2dc/xml/maccready-dc.xml)


## License
Expand Down
5 changes: 5 additions & 0 deletions app.wsgi
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import sys

sys.path.insert(0, '/Sites/ead2dc/')

from app import app as application
8 changes: 8 additions & 0 deletions app/schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS logs;

CREATE TABLE log (
id INTEGER PRIMARY KEY AUTOINCREMENT,
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
verb TEXT,
setname TEXT
);

0 comments on commit a31c258

Please sign in to comment.