Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abn/flask-karaoke
An skeleton project for flask based apps
https://github.com/abn/flask-karaoke
Last synced: 7 days ago
JSON representation
An skeleton project for flask based apps
- Host: GitHub
- URL: https://github.com/abn/flask-karaoke
- Owner: abn
- License: mit
- Created: 2013-09-27T04:22:44.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-19T10:02:12.000Z (about 10 years ago)
- Last Synced: 2024-11-18T07:49:56.962Z (about 1 month ago)
- Language: Python
- Size: 180 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
flask-karaoke
=============[Karaoke (カラオケ?)](http://en.wikipedia.org/wiki/Karaoke)
```
bimoraic clipped compound of Japanese kara 空 "empty" and ōkesutora オーケストラ "orchestra"
```A skeleton project for flask based apps
## Usage
### Fetch a local copy```sh
git clone https://github.com/abn/flask-karaoke.git
```
### Prepare copy
```sh
cd flask-karaoke
./prepare.sh ${MODULE_NAME}
```
### Push to your repository
```sh
git init
git add .
git commit -m "Initial commit"
git remote add origin ${GIT_PUSH_URI}
git push -u --force origin master
```
### Useful commands
```sh
# activate dev environment
source contrib/activate-dev-env# start server
python run.py# flask-script manager shell
python manage.py shell# flask-script manager shell (alternative)
./contrib/shell```