Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/williamsampaio/flaskeleton
https://github.com/williamsampaio/flaskeleton
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/williamsampaio/flaskeleton
- Owner: WilliamSampaio
- License: mit
- Created: 2024-01-02T18:17:11.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-01-09T03:21:01.000Z (12 months ago)
- Last Synced: 2024-01-09T04:46:22.101Z (12 months ago)
- Language: Python
- Size: 2.06 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flaskeleton
## Usage
There are many ways to use Flaskeleton, below you can choose the one you like best.
### Flaskeleton CLI
See about [Flaskeleton CLI](https://github.com/WilliamSampaio/flaskeleton-cli).
```bash
pip install flaskeleton-cli
# flaskeleton create --help
flaskeleton create --path /path/of/projects project_name
```### Bash Script
#### Using CURL
```bash
# curl -s https://raw.githubusercontent.com/WilliamSampaio/flaskeleton/master/create | bash
bash <(curl -s https://raw.githubusercontent.com/WilliamSampaio/flaskeleton/master/create) -p /path/of/projects -f project_name
```#### Using Wget
```bash
# wget -qO - https://raw.githubusercontent.com/WilliamSampaio/flaskeleton/master/create | bash
bash <(wget -qO - https://raw.githubusercontent.com/WilliamSampaio/flaskeleton/master/create) -p /path/of/projects -f project_name
```### Git
```bash
git clone https://github.com/WilliamSampaio/flaskeleton.git project_name
```