https://github.com/boostio/boostwiki
Wiki
https://github.com/boostio/boostwiki
Last synced: 6 months ago
JSON representation
Wiki
- Host: GitHub
- URL: https://github.com/boostio/boostwiki
- Owner: BoostIO
- Created: 2018-04-11T14:58:19.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-26T15:50:08.000Z (about 7 years ago)
- Last Synced: 2025-05-07T17:13:50.508Z (8 months ago)
- Language: TypeScript
- Size: 570 KB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boostwiki
## Development
Prepare `.env` file.
```
BASE_URL=http://localhost:3000
PORT=3000
GITHUB_CLIENT_ID=elided
GITHUB_CLIENT_SECRET=elided
SESSION_SECRET=elided
SESSION_REDIS_PORT=6379
SESSION_REDIS_HOST=localhost
SESSION_REDIS_DB=0
WS_SECRET=elided
WS_REDIS_PORT=6379
DB_URL=mongodb://localhost
ADMIN_PASSWORD=elided
CACHE_REDIS_PORT=6379
CACHE_REDIS_HOST=localhost
CACHE_REDIS_DB=1
```
Start mongodb and redis.
Run Script.
```
npm i
npm nun dev
```
## Test
Run Script.
```
npm run test
```
(watch)
```
npm run test:watch
```