Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyleparisi/buildless-vuejs
https://github.com/kyleparisi/buildless-vuejs
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kyleparisi/buildless-vuejs
- Owner: kyleparisi
- Created: 2019-01-25T19:38:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-13T00:20:09.000Z (over 4 years ago)
- Last Synced: 2024-08-02T02:16:01.724Z (3 months ago)
- Language: JavaScript
- Size: 34.2 KB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Buildless-vuejs
Pretty basic way to develop a vuejs app.
## Running local
Only requirement is an http server. Here is how I do it:
```bash
# in ~/.bash_profile
function server() {
local port="${1:-8000}"
open "http://localhost:${port}/" && python -m SimpleHTTPServer "$port"
}
``````bash
server
```Then open [http://localhost:8000](http://localhost:800).
## Running remote
Upload to CDN or AWS S3 hosting bucket.