Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sandje00/tg-e-guide
This is a city guide Vue.js / Express.js web app.
https://github.com/sandje00/tg-e-guide
axios expressjs joi jwt nodejs passportjs sequelize vuejs vuex
Last synced: 11 days ago
JSON representation
This is a city guide Vue.js / Express.js web app.
- Host: GitHub
- URL: https://github.com/sandje00/tg-e-guide
- Owner: sandje00
- Created: 2019-08-17T09:50:55.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-04T07:28:00.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T14:53:28.123Z (over 1 year ago)
- Topics: axios, expressjs, joi, jwt, nodejs, passportjs, sequelize, vuejs, vuex
- Language: JavaScript
- Size: 3.43 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A city guide Vue.js / Express.js web app.
This is a simple Vue.js / Express.js city guide web app for **ExtensionEngine Summer Camp 2019**.
## Prerequisites
* Node.js & npm
* Vue CLI 3.x
* create database
* clone this repo> This app uses **MySQL database** but you can create any database supported by Sequelize (MySQL, MariaDB, SQLite, PostgreSQL, MSSQL).
> If you use database other than MySQL, you also need to install **SQL client for your database**.## How to run the app
In `server` and `client` folders create `.env` file as shown in `.env.example`.
### Client - Terminal A
```
cd client
npm install
npm run serve
```### Server - Terminal B
```
cd server
npm install
npm run seed
npm run start
```