Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arudzinska/music_collection
Simple Flask+SQLite app rendered in HTML to add, view and delete albums in a music collection.
https://github.com/arudzinska/music_collection
flask flask-sqlalchemy sqlite
Last synced: about 1 month ago
JSON representation
Simple Flask+SQLite app rendered in HTML to add, view and delete albums in a music collection.
- Host: GitHub
- URL: https://github.com/arudzinska/music_collection
- Owner: arudzinska
- Created: 2018-02-06T22:26:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-04T19:46:12.000Z (over 6 years ago)
- Last Synced: 2023-10-20T11:10:56.896Z (about 1 year ago)
- Topics: flask, flask-sqlalchemy, sqlite
- Language: HTML
- Homepage:
- Size: 384 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Music Collection
Simple Flask+SQLite app to add, view and delete albums in a music collection.
# Running the app
1. Create a virtual environment with virtualenv/venv3 in the parent directory.
2. Activate the virtual environment.
3. Install the required packages:
```
$ pip install -r requirements.txt
```4. Run start_server.sh (creates the database and runs the local server):
```
$ ./start_server.sh
```
The app is run with an active debugger, to switch it off go to both run.py and app/views.py and change *debug* to False.The app can be viewed at http://127.0.0.1:8080.