r13i / project-manager

Project management tool for engineers and business people

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

project-manager

Project management tool for engineers and business people

Server-side

# Make sure MongoDB is running (listening on port 21017, by default)
sudo service mongod start

# Then, run the server
yarn dev

Client-side

# Start Vue
yarn serve

Apollo GraphQL's Playground

Testing 'Email Capture'

This playground is used to test the API without worrying about the UI

# To open the playground, start by launching the server with this command
yarn dev

# Then, connect with your browser to 'http://localhost:5500/playground'
// In order to send a request, we need to write a 'mutation' :
mutation CaptureEmail($email: String!) {
    captureEmail(email: $email) {
        id
        email
    }
}
# Then, got to the tab 'QUERY VARIABLES' and enter an email
{
    "email": "email@example.com"
}

# You should receive a confirmation of creation

# To confirm on Mongo, open a shell and type :
mongo
show dbs
use <your-db-name>
show collections
# You should see 'users'
db.users.find().pretty()
# You should see all the user entries in JSON format

Testing Signup

// We start by writing a 'mutation'
mutation Signup ($id: String!, $firstname: String!, $lastname: String!, $password: String!){
  signup(id: $id, firstname: $firstname, lastname: $lastname, password: $password) {
    token
    user {
      id
      email
    }
  }
}
# Then, got to the tab 'QUERY VARIABLES' and enter user credentials
# N.B. We need to fetch the user's ID from Mongo
{
  "id": "5c2a0c02b07eac693157ba9e",
  "firstname": "John",
  "lastname": "Doe",
  "password": "mypassword"
}

About

Project management tool for engineers and business people

License:MIT License


Languages

Language:JavaScript 36.5%Language:CSS 31.0%Language:Vue 30.3%Language:HTML 2.2%