Skip to content

MineDrum/instagram-fullstack-clone

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started

This repository functions as the basis of the instagram clone project.

Development

Installing Dependencies

Structure

Let's run through the folders:

.
├── client
│   ├── public
│   └── src
├── server
│   ├── __test__
│   ├── controllers
│   ├── models
│   ├── routes
│   ├── index.js
│   └── server.js
└── README.md
  • client here is where the front end code will be stored. Inside is a basic vue js project folder structure
    • public this is the folder where the production build will be compiled to
    • src this is where the vue sj development code is stored
  • server here is where the back end server code is stored
    • controllers this folder contains all the functions for our router endpoints
    • models here we store our data models which we use to communicate with the mysql database
    • routes here we store the routes for different resources (posts, accounts comments, etc)

Backlog

So what should be built? Below is a collection of user stories you can choose from. Stories inside of each priority level are not necessarily in order, it's up to your group to decide how they fit into your strategy. These are also just suggestion, feel free to change them or create your own! Feel free to get creative.

Must-Haves

these are necessary for basic usability

  • users should be able to create an account
  • users should be able to create posts ...

Nice-to-Haves

if time, add more features!

  • TEXT GOES HERE ...

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 66.2%
  • JavaScript 23.4%
  • HTML 10.4%