This repository was archived by the owner on Jul 12, 2019. It is now read-only.
Initial Implementation
Pre-release
Pre-release
v0.1.0 (Initial Implementation)
Submitted as an initial implementation of Euphoria on 4/16/2019.
- Used
fetch
instead ofaxios
to handle our HTTP requests. - Added cookies and user sessions.
- Changed our HTTP API to be more intuitive (e.g. more intuitive HTTP requests, using the request payload rather than the path arguments, etc.).
- Storing files in the file system, and storing the path in the database, instead of storing the entire blob in the database.
- Added more frontend working (i.e. more webpages).
- Added tests for most of the backend. The tests actually query/update the local database, (which are easier to write, given that we have not broken up our backend into a
Handler
andStore
layer). Thus, these tests are more like integration tests than unit tests.