https://github.com/squishy123/ronin-starter
Ronin Framework Starter
https://github.com/squishy123/ronin-starter
backend framework nodejs ronin
Last synced: 2 months ago
JSON representation
Ronin Framework Starter
- Host: GitHub
- URL: https://github.com/squishy123/ronin-starter
- Owner: Squishy123
- License: agpl-3.0
- Created: 2019-07-02T18:49:56.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:17:01.000Z (over 3 years ago)
- Last Synced: 2025-04-07T06:45:35.922Z (about 1 year ago)
- Topics: backend, framework, nodejs, ronin
- Language: JavaScript
- Homepage:
- Size: 2.47 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ronin-starter
## Getting Started
### Install Dependencies
```console
npm install
```
### Copy and configure environment variables
```console
cp .env.example .env.dev && cp .env.example .env.prod
```
## Starting Development Environment
### Startup MongoDB in Docker Environment
```console
docker-compose up
```
### Start development server
```console
npm run dev
```