https://github.com/quansight/curriculum-catalog
https://github.com/quansight/curriculum-catalog
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/quansight/curriculum-catalog
- Owner: Quansight
- Created: 2018-12-13T19:48:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T15:38:12.000Z (over 3 years ago)
- Last Synced: 2025-03-10T15:17:08.750Z (over 1 year ago)
- Language: Vue
- Homepage: https://quansight.github.io/curriculum-catalog/
- Size: 2.62 MB
- Stars: 0
- Watchers: 11
- Forks: 1
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quansight Curriculum Catalog
### Project from template
This project was generated from a template, like this:
```bash
sudo npm install -g @vue/cli
sudo npm install -g @vue/cli-init
vue init vuetifyjs/nuxt curriculum-catalog
```
### Local dev
Install the project dependecies with:
``` bash
npm install
```
Run an SSR local dev server (with hot reload):
```bash
npm run dev
```
### Production
Run an SSR production-grade server:
```bash
npm run build
npm start
```
Or generate static files for a stand-alone (no `node.js`) deployment:
```bash
npm run generate
```
To deploy to GitHub pages, use the following commands:
```bash
npm run generate
rm -rf docs
cp -r dist docs
git add docs
git commit
git push
```
It sometimes takes GitHub pages a minute or two to update, but you should see
the site go live after pushing (and some patience).