https://github.com/harvard-lil/alter-space
An immersive library experience that gives visitors control over light, color, sound, and space.
https://github.com/harvard-lil/alter-space
library lights sounds vue
Last synced: 3 months ago
JSON representation
An immersive library experience that gives visitors control over light, color, sound, and space.
- Host: GitHub
- URL: https://github.com/harvard-lil/alter-space
- Owner: harvard-lil
- Archived: true
- Created: 2018-12-10T21:52:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-06-01T13:03:51.000Z (over 5 years ago)
- Last Synced: 2024-08-07T23:39:38.937Z (about 1 year ago)
- Topics: library, lights, sounds, vue
- Language: HTML
- Homepage: https://lil.law.harvard.edu/projects/alterspace/
- Size: 63.9 MB
- Stars: 7
- Watchers: 10
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Alterspace
Alterspace is a new kind of reading room: a simple set of controls lets patrons decide on the color and behavior of lights and sounds in the space, adapting conditions for brainstorming, meditation, or quiet study.

Photo by Hannah SchoenbaumMore information about the project is available here: https://alterspace.github.io/
and here: https://lil.law.harvard.edu/projects/alterspace/This project is a collaboration between Harvard's [Library Innovation Lab](https://lil.law.harvard.edu) and [metaLAB](https://metalab.github.io).
### Before you start, see
- [List of tools necessary](guides/tools.md)
- [Sound guide](guides/sounds.md)
- [Light guide](guides/lights.md)### Table of contents:
- [Frameworks used](#frameworks)
- [Project structure](#project-structure)
- [Code installation instructions for OS](guides/install.md)
- [Code installation instructions for raspberry pis](guides/raspberrypi.md)### Frameworks
This project is built using
- [vue.js](http://vuejs.org/) on the frontend
- [flask](http://flask.pocoo.org/) on the backend### Project structure
- [backend](./backend) contains the server and celery. The main entry point is [app.py](backend/app.py)
- [frontend](./frontend) contains most of our frontend files. These include our [Vue.js app](frontend/main.js) and our [assets](frontend/src/assets).
- styles live in scss format in [assets/css](frontend/src/assets/css)
- [guides](guides) are some guides you might find useful!
- [dist](dist) are the compiled files. Files go there when you [build files](guides/install.md#build-files-before-deploying) with `npm run build`