Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greyli/albumy
Check out the newer version (2024) of this project: https://github.com/greyli/moments
https://github.com/greyli/albumy
Last synced: 12 days ago
JSON representation
Check out the newer version (2024) of this project: https://github.com/greyli/moments
- Host: GitHub
- URL: https://github.com/greyli/albumy
- Owner: greyli
- License: mit
- Created: 2018-07-19T15:01:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-09T22:58:09.000Z (about 1 year ago)
- Last Synced: 2024-10-22T20:34:23.135Z (21 days ago)
- Language: JavaScript
- Homepage:
- Size: 1.13 MB
- Stars: 296
- Watchers: 13
- Forks: 364
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Albumy
*Capture and share every wonderful moment.*
> Example application for *[Python Web Development with Flask](https://helloflask.com/en/book/1)* (《[Flask Web 开发实战](https://helloflask.com/book/1)》).
Demo: http://albumy.helloflask.com
![Screenshot](https://helloflask.com/screenshots/albumy.png)
## Installation
clone:
```
$ git clone https://github.com/greyli/albumy.git
$ cd albumy
```
create & activate virtual env then install dependency:with venv/virtualenv + pip:
```
$ python -m venv env # use `virtualenv env` for Python2, use `python3 ...` for Python3 on Linux & macOS
$ source env/bin/activate # use `env\Scripts\activate` on Windows
$ pip install -r requirements.txt
```
or with Pipenv:
```
$ pipenv install --dev
$ pipenv shell
```
generate fake data then run:
```
$ flask forge
$ flask run
* Running on http://127.0.0.1:5000/
```
Test account:
* email: `[email protected]`
* password: `helloflask`## License
This project is licensed under the MIT License (see the
[LICENSE](LICENSE) file for details).