valasek / quasar-starter-kit-go-gin

Quasar Framework starter kit using Go and Gin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go / Gin / Quasar Framework Starter Kit

Features

    ✓ Allows you to start server on HTTPS / HTTP

    ✓ Includes file download example

    ✓ Includes file upload example

DB support can be added via go/db or e.g. via gorm- Gorm

Standing on the shoulders of giants

Go, Gin web framework, Vue, Quasar

Go Backend

JS Frontend

Prerequisites

Getting Started

Step 1. Clone the latest version of Go / Gin / Quasar Framework Starter Kit on your local machine by running:

$ git clone -o quasar-starter-kit-go-gin -b master --single-branch https://github.com/valasek/quasar-starter-kit-go-gin.git MyApp
$ cd MyApp

Client

Step 2. Install project dependencies listed in client/package.json files:

$ cd client
$ npm install                   # Install Node.js dependencies

or using Yarn:

$ yarn                          # Install Node.js dependencies

Step 3. Launch your web app:

$ quasar dev                      # Compile and lanch the app, the same as running: npm dev or yarn dev

The app should become available at http://localhost:8080/. See client/package.json for other available commands such as quasar build etc.

Server

Step 4. Launch your server:

$ cd ../server
$ go run quasar-starter-kit-go-gin.go server    # Will install required Go packages and run the server in dev mode

The server will listen on http://localhost:3000/.

How to Update

You can always fetch and merge the latest changes from this (upstream) repo back into your project by running:

$ git checkout master
$ git fetch quasar-starter-kit-go-gin
$ git merge quasar-starter-kit-go-gin/master 

How to Contribute

Anyone and everyone is welcome to contribute. The best way to start is by checking our open issues, submit a new issues or feature request, participate in discussions, upvote or downvote the issues you like or dislike, send pull requests.

Get in Touch

Twitter, Web

License

Copyright © 2019-present Stanislav Valasek. This source code is licensed under the MIT


Made by Stanislav Valasek @valasek

About

Quasar Framework starter kit using Go and Gin

License:MIT License


Languages

Language:Go 54.0%Language:JavaScript 21.0%Language:Vue 20.6%Language:HTML 2.8%Language:CSS 1.6%