Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yujincheng08/cici
词辞
https://github.com/yujincheng08/cici
Last synced: about 1 month ago
JSON representation
词辞
- Host: GitHub
- URL: https://github.com/yujincheng08/cici
- Owner: yujincheng08
- Created: 2018-04-23T13:49:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-01-04T02:13:42.000Z (almost 3 years ago)
- Last Synced: 2024-05-02T06:05:46.165Z (6 months ago)
- Size: 533 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CiCi
B/S Homework## Usage
- Clone submodules
```
git submodule update --init backend frontend
```
- Install dependencies
```bash
npm i
```
Or if you are using yarn:
```bash
yarn
```
- Start
```bash
npm start
```
Or
```bash
yarn start
```
Then the server is running on `0.0.0.0:3000`.- Specific port
Just set PORT env var. Like:
```bash
PORT=1155 yarn start
```
Then it will listen on port 1155.- Import wordbooks
This script should run for only once.
```bash
yarn run init
```
Or you can get into backend and manual
```bash
yarn run import-wordbooks
```
- Configurations
Configuration on backend, such as database setting or learning setting, you can edit the configuraton file in `backend/Config/index.js`.