Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ramongebben/popcubex
https://github.com/ramongebben/popcubex
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ramongebben/popcubex
- Owner: RamonGebben
- License: isc
- Created: 2016-02-15T19:03:40.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-24T13:10:20.000Z (almost 9 years ago)
- Last Synced: 2023-08-09T23:13:45.485Z (over 1 year ago)
- Language: CSS
- Size: 70.7 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Popcubex
Overview of open Pull requests
## Install
When you are starting with this project fresh and you need to setup everything you can run:
```bash
npm run setup:env
```## Database
When you want to start with a client database you can run:```bash
npm run db:setup
```
For loading the test db use:```bash
npm run db:restore
```And to update the test db:
```bash
npm run db:dump
```Note that in order for these commands to work you should have the python drivers installed.
You can install these using pip:```bash
sudo pip install rethinkdb
```If you do not have pip, you will need to install this as well:
```bash
easy_install pip;
```
If this does not work [read the docs](https://pip.pypa.io/en/stable/installing/)## Running
When you want to run the application you will need to open two terminals.
In the first one you run:```bash
npm run server
```
This will startup the webhook, websocket server the database.
Now in the other terminal you run:```bash
npm start
```
This will startup the frontend part of things. Stuff like webpack and hotreloader etc.Now you can check the app at http://localhost:8080