https://github.com/netzulo/qadmin
QAdmin Web Panel
https://github.com/netzulo/qadmin
Last synced: 4 months ago
JSON representation
QAdmin Web Panel
- Host: GitHub
- URL: https://github.com/netzulo/qadmin
- Owner: netzulo
- License: apache-2.0
- Created: 2017-07-17T13:20:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-11-02T09:38:47.000Z (over 6 years ago)
- Last Synced: 2025-09-05T03:37:23.568Z (10 months ago)
- Language: HTML
- Size: 110 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QAdmin


#### CIs for linux/windows
Branch | Travis | Appveyor | CircleCI | CodeClimate
------ | ------ | -------- | -------- | -----------
master |  |  |  | [](https://codeclimate.com/github/netzulo/qadmin/maintainability)
## Prerequisites
You will need the following things properly installed on your computer.
* [Git](https://git-scm.com/)
* [Node.js](https://nodejs.org/) (with npm)
* [Ember CLI](https://ember-cli.com/)
* [Google Chrome](https://google.com/chrome/)
### NodeJs tested versions
* iojs
* lts/*
* v7.x
* v6.x
* v5.x _(not supported)_
* v4.x _(not supported)_
## Installation
* `git clone ` this repository
* `cd qadmin`
* `npm install`
## Running / Development
* `ember serve`
* Visit your app at [http://localhost:4200](http://localhost:4200).
* Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests).
### Code Generators
Make use of the many generators for code, try `ember help generate` for more details
### Running Tests
* `ember test`
* `ember test --server`
### Linting
* `npm run lint:js`
* `npm run lint:js -- --fix`
### Building
* `ember build` (development)
* `ember build --environment production` (production)
### Deploying
For NGINX web server you can use this example file , don't forget to create link at `sites-enabled` directory :
```
# config name: etc/nginx/sites-available/qadmin
# port HTTP : 83
# port HTTPS : 2443
# path HTML files : /your/path/dist
server {
listen 83 default_server;
listen [::]:83 default_server;
server_name mydomainorip.tk;
listen 2443 ssl http2 default_server;
listen [::]:2443 ssl http2 default_server;
include snippets/self-signed.conf;
include snippets/ssl-params.conf;
root /your/path/dist;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}
```
## Further Reading / Useful Links
* [ember.js](https://emberjs.com/)
* [ember-cli](https://ember-cli.com/)
* Development Browser Extensions
* [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
* [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/)