Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/basemkhirat/dotapp-framework
A light-weight, thin and full-featured Node.js framework built on express.js
https://github.com/basemkhirat/dotapp-framework
acl cli expressjs filesystem i18n mongoose mvc nodejs swagger
Last synced: about 3 hours ago
JSON representation
A light-weight, thin and full-featured Node.js framework built on express.js
- Host: GitHub
- URL: https://github.com/basemkhirat/dotapp-framework
- Owner: basemkhirat
- Created: 2020-05-25T15:05:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-04T02:15:50.000Z (12 months ago)
- Last Synced: 2023-12-05T02:33:05.207Z (12 months ago)
- Topics: acl, cli, expressjs, filesystem, i18n, mongoose, mvc, nodejs, swagger
- Language: JavaScript
- Homepage:
- Size: 30.2 MB
- Stars: 9
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
DotAppA tiny, light-weight and full-featured nodejs framework built on express.js.
DOTAPP is shipped with a combination of open-source libraries that are fully integrated to save the development time like users, roles an media.
## Requirements
- nodejs >= 12.0.0
- git
- mongodb## Installation
```bash
$ git clone https://github.com/basemkhirat/dotapp-framework blog
$ cd blog
$ npm install
```## Configuration
1. Rename the file `.env.example` to `.env`.
2. Change configurations in `.env` according to your environment.
The `.env` file appears like this:``` bash
NODE_ENV=development
APP_DEBUG=true
APP_URL=http://localhost:3000
APP_PORT=3000TOKEN_SECRET=
TOKEN_EXPIRES=604800DB_URL=mongodb://localhost/mydatabase
DB_USER=
DB_PASS=
```3. Generate a new TOKEN_SECRET using this command:
``` bash
$ node run secret:generateSecret key updated successfully!
```
4. Create the administrator user using this command:``` bash
$ node run user:createFirst Name *: basem
Last Name *: khirat
Email *: [email protected]
Password *: ********User created successfully!
```## Environments
- For `developement`: set the `NODE_ENV=development` and
`APP_DEBUG=true` in `.env` file and run the `dev` command.``` bash
$ npm run dev
```- For `production`: set the `NODE_ENV=production` and
`APP_DEBUG=false` in `.env` file and run the `start` command.``` bash
$ npm start
```Server will listen at port 3000 by default. you can change the port later from app configurations.
Here you can browse your API Documentation `http://localhost:3000/api/v1/docs`
## Documentation
- [Routes](https://github.com/basemkhirat/dotapp-core/blob/master/manual/routes.md)
- [Controllers](https://github.com/basemkhirat/dotapp-core/blob/master/manual/controllers.md)
- [Middlewares](https://github.com/basemkhirat/dotapp-core/blob/master/manual/middlewares.md)
- [Request](https://github.com/basemkhirat/dotapp-core/blob/master/manual/request.md)
- [Response](https://github.com/basemkhirat/dotapp-core/blob/master/manual/response.md)
- [Models](https://github.com/basemkhirat/dotapp-core/blob/master/manual/models.md)
- [Authentication](https://github.com/basemkhirat/dotapp-core/blob/master/manual/authentication.md)
- [Authorization](https://github.com/basemkhirat/dotapp-core/blob/master/manual/authorization.md)
- [Public Assets](https://github.com/basemkhirat/dotapp-core/blob/master/manual/public.md)
- [Commands](https://github.com/basemkhirat/dotapp-core/blob/master/manual/commands.md)
- Services:
- [Cache](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/cache.md)
- [Config](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/config.md)
- [HTTP](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/http.md)
- [Log](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/log.md)
- [Mail](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/mail.md)
- [Media](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/media.md)
- [Storage](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/storage.md)
- [Validation](https://github.com/basemkhirat/dotapp-core/blob/master/manual/services/validation.md)
- [Restful API Documentation](https://github.com/basemkhirat/dotapp-core/blob/master/manual/docs.md)
## Author
[Basem Khirat](http://basemkhirat.com) - [[email protected]](mailto:[email protected])## Bugs, Suggestions and Contributions
Thanks to [everyone](https://github.com/basemkhirat/dotapp-framework/graphs/contributors)
who has contributed to this project!Please use [Github](https://github.com/basemkhirat/dotapp-framework) for reporting bugs,
and making comments or suggestions.## License
MIT