Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brianseong99/jinwoo_cloud_scheduler
https://github.com/brianseong99/jinwoo_cloud_scheduler
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/brianseong99/jinwoo_cloud_scheduler
- Owner: BrianSeong99
- Created: 2020-02-03T10:21:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T04:36:51.000Z (almost 2 years ago)
- Last Synced: 2024-11-08T13:56:20.841Z (3 months ago)
- Language: Python
- Size: 2.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cloud Scheduler
## Note
Deployment Environment:
```
node 10.16.3
npm 6.9.0
python 3.7.1
```This project is created with the following scripts:
```bash
# frontend
npm config set registry https://registry.npm.taobao.org
npm install --global vue-cli
vue init webpack frontend
# backend
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple django
django-admin startproject api
mv api backend
```## Getting Started
Install dependencies.
```bash
cd frontend
npm install
cd ../backend
pip install -r requirements.txt
```Run backend
```bash
cd backend
python manage.py migrate
python manage.py runserver
```Run frontend
```bash
cd frontend
npm run dev
```## Unit Tests
Frontend
```bash
npm run unit
```Backend
```bash
pytest
```Note: if you encounter problems in frontend unit test, try
```bash
node node_modules/jest/bin/jest.js --clearCache
```## Style Tests
Frontend
```bash
npm run lint
```Backend
```bash
pylint --load-plugins=pylint_django api
```