mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-13 00:24:28 +00:00
45 lines
869 B
Markdown
45 lines
869 B
Markdown
# ENSL Gathers App
|
|
|
|
## Status
|
|
|
|
A realtime micro web service to organise gathers for ENSL.org
|
|
|
|
## Design Goals
|
|
|
|
1) Create a nice place where the NS2 community can assemble and have fun
|
|
|
|
2) Create an efficient, easy-to-use and flexible system to create NS2 gathers
|
|
|
|
3) Support the modern web and basic usability expectactions (e.g. realtime, phone and tablet friendly)
|
|
|
|
That's it
|
|
|
|
## Requirements
|
|
|
|
- node.js > 6.0
|
|
|
|
- MongoDB
|
|
|
|
## Run in development
|
|
|
|
```bash
|
|
npm install # Install deps
|
|
|
|
npm run watch # Compile and watch frontend assets
|
|
|
|
RANDOM_USER=true npm run dev # Run dev server, loading yourself as a random user
|
|
# or
|
|
FIXED_USER=989 npm run dev # Run dev server, loading yourself as any user with the specified id
|
|
```
|
|
|
|
## Run in production
|
|
|
|
```bash
|
|
npm install # Install deps
|
|
|
|
npm start_production # Compile assets and run in production
|
|
```
|
|
|
|
## License
|
|
|
|
MIT Licensed
|