Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aligoren/create_fiber_app
Setup a Fiber application running by one command
https://github.com/aligoren/create_fiber_app
cli command-line command-line-tool create-fiber-app golang
Last synced: 2 days ago
JSON representation
Setup a Fiber application running by one command
- Host: GitHub
- URL: https://github.com/aligoren/create_fiber_app
- Owner: aligoren
- Created: 2022-07-02T19:52:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-07-03T14:04:39.000Z (over 2 years ago)
- Last Synced: 2023-03-01T04:03:00.736Z (over 1 year ago)
- Topics: cli, command-line, command-line-tool, create-fiber-app, golang
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 7
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Create Fiber App
Create Fiber App easily
**Status**: In development
## Commands
These commands are available.
### create
You can create a new fiber project using like that;
**Alias:** `c`
`create-fiber-app create -n github.com/usernane/myproject`
#### Subcommands
These are subcommands to customize your setup
##### --name
It's a flag for the project name. It's required
**Alias:** `-n`
**Required**: true
**Example:** `create-fiber-app create -n github.com/usernane/myproject`
##### --dir
It's a flag to specify the project directory. It will use the current directory if you don't specify a directory.
**Alias:** `-d`
**Required**: false
**Example:** `create-fiber-app create -n github.com/usernane/myproject -d /path/to/myproject`
## Todo
- [ ] Creating project templates to create example project files, custom middleware, .etc
- [ ] Adding middleware to the current project (Fiber's itself and custom middleware)
- [ ] Ability to create Fiber project by some project structures
- [ ] Ability to add route
- [ ] Add run command like `create-fiber-app run`