https://github.com/codingitwrong/adonisup
https://github.com/codingitwrong/adonisup
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codingitwrong/adonisup
- Owner: CodingItWrong
- Created: 2019-01-06T14:35:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-24T10:45:05.000Z (about 6 years ago)
- Last Synced: 2025-10-12T01:34:07.769Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# adonisup
Adonis API project creator with my default configuration:
- Yarn
- Vow for testing
- Postgres database
- ESLint and Prettier config
- CircleCI config
## Requirements
- Yarn
- Adonis CLI
```sh
$ npm install -g @adonisjs/cli
```
## Installation
Clone the repo and add `adonisup/bin` to your path.
## Usage
```bash
adonisup myprojectname
```
## Manual Steps
The following steps must done manually after running `emberup`; they have not yet been scripted.
In `package.json`, add the following scripts:
```diff
"scripts": {
"start": "node server.js",
"test": "node ace test",
+ "lint": "eslint \"**/*.js\"",
+ "format": "prettier --write \"**/*.js\""
},
```
Run `yarn format` and commit the changes.
## License
Apache-2.0