A Full Stack App in Vue.js and Express.js tutorial by Cody Seibert
.
A Vue.js project
An Express project
Running in two terminal windows, for the client and server, install then start the application. Namely,
for the client,
cd client
yarn install
yarn start
and similarly for the server,
cd server
yarn install
yarn start
My version of the application follows the FreeCodeCamp
tutorial fairly closely, however, some things I modified according to my own preference. In particular, I chose not to seed the sqlite database using JS. Instead I used DB Browser for SQLite
and SQL statements to complete that task (it's good to practice :-).