Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/escolalms/admin
Admin SPA Panel for API
https://github.com/escolalms/admin
ant-design cypress
Last synced: 4 days ago
JSON representation
Admin SPA Panel for API
- Host: GitHub
- URL: https://github.com/escolalms/admin
- Owner: EscolaLMS
- Created: 2021-01-26T14:41:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-12T13:59:44.000Z (7 months ago)
- Last Synced: 2024-04-14T03:31:51.186Z (7 months ago)
- Topics: ant-design, cypress
- Language: TypeScript
- Size: 761 MB
- Stars: 3
- Watchers: 3
- Forks: 4
- Open Issues: 54
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Escola LMS
[![End-to-end Tests](https://github.com/EscolaLMS/Admin/actions/workflows/e2e-playwright.js.yml/badge.svg)](https://github.com/EscolaLMS/Admin/actions/workflows/e2e-playwright.js.yml)
This project is initialized with [Ant.design PRO](https://pro.ant.design). Follow is the quick guide for how to use.
Documentation on how to use admin panel are available at [docs.wellms.io](https://docs.wellms.io/)
## Environmental Variables
You need to provide URL to API for Admin to work
example
```
REACT_APP_API_URL='https://api-stage.escolalms.com'
```those can be in `.env` file or in Environmental Variables
## Environment Prepare
Install `node_modules`:
```bash
yarn
```## Provided Scripts
Escola LMS provides some useful script to help you quick start and build with web project, code style check and test.
Scripts provided in `package.json`. It's safe to modify or add additional script:
### Start project
```bash
yarn start
```### Build project
```bash
yarn build
```#### e2e tests
Locally
```bash
yarn playwright:headed
```CI
```bash
yarn e2e:test
```## More