Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Commit

Permalink
Add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tdemin committed Jun 11, 2019
1 parent e1fd2f9 commit b1fd9a1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
@@ -0,0 +1,27 @@
## Amber Backend

This is the backend app of Project Amber, a task list app.

This is a basic Flask/SQLAlchemy app that takes care of syncing tasks between
devices.

#### Configuration

The config file is a JSON file that is loaded from either `./config.json` or
`/etc/amber.json`, whichever is found first.

Example config:

{
"database": "sqlite:///file.db", // SQLAlchemy database URI
// see https://docs.sqlalchemy.org/en/13/core/engines.html#database-urls
"allow_signup": false // whether to allow /api/signup or not
}

#### Dependencies

This app directly depends on `flask`, `flask-sqlalchemy`, and `bcrypt`.

#### Licenses

See [LICENSE.txt](LICENSE.txt).

0 comments on commit b1fd9a1

Please sign in to comment.