Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.04 KB

README.md

File metadata and controls

55 lines (42 loc) · 1.04 KB

Processing

A Flask wrapper app for a digital records processing workflow.

Get code:

git clone [email protected]:UAlbanyArchives/processing.git
cd processing

For development

This lets you edit files while they're served from the container.

If you don't have the default development test directories required, you can create them with:

python setup-dev.py

Run the app:

docker-compose -f docker-compose-dev.yml up

Navigate to http://localhost:5000

When you're done:

docker-compose down

For deployment

Building the processing image: (FYI you need .archivessnake.yml and .hyrax.yml)

docker build -t "processing" .

Running the image

docker-compose up -d

Navigate to http://localhost:5000

To stop:

docker-compose down

For a terminal

If you need another terminal:

docker exec -it processing_flask1_1 /bin/bash