Skip to content

Commit

Permalink
Grammar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
netervati committed Jun 16, 2024
1 parent ba066f2 commit 5e7f9ef
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![PseudoRESTAPI - Landing Page](https://raw.githubusercontent.com/netervati/pseudo-rest-api/main/public/landing-page-v2.png)
![PseudoRESTAPI - Landing Page](https://raw.githubusercontent.com/netervati/pseudo-rest-api/main/public/landing-page-v3.png)

![GitHub Workflow Status (with branch)](https://img.shields.io/github/actions/workflow/status/netervati/pseudo-rest-api/build.yml?branch=main&style=flat-square)
![GitHub deployments](https://img.shields.io/github/deployments/netervati/pseudo-rest-api/production?label=vercel&logo=vercel&logoColor=white)
Expand All @@ -11,9 +11,9 @@
## Overview

**PseudoRESTAPI** is a tool that enables you to create mock REST APIs quickly and easily, without requiring any language or framework skills.
**PseudoRESTAPI** is a tool that enables you to create fake REST APIs quickly and easily, without requiring any language or framework skills.

- Create API endpoints for your mock server
- Create API endpoints for your fake server
- Design the schema for your fake database
- Generate data based on the schema

Expand Down
6 changes: 5 additions & 1 deletion components/footer.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<script setup lang="ts">
const curYear = new Date().getFullYear();
</script>

<template>
<footer class="footer border-b-8 border-violet-600 items-center p-6 md:text-lg">
<aside class="items-center grid-flow-col">
<p2023 PseudoRESTAPI - All rights reserved.</p>
<p{{ curYear }} PseudoRESTAPI - All rights reserved.</p>
</aside>
<nav class="grid-flow-col gap-4 md:place-self-center md:justify-self-end">
<p>Built by <NuxtLink class="text-violet-600 font-bold" to="https://www.christophertabula.net/">Christopher Tabula</NuxtLink></p>
Expand Down
6 changes: 3 additions & 3 deletions content/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Creating your first app

Think of apps as mock servers, which can help you organize and group your fake endpoints.
Think of apps as fake servers, which can help you organize and group your fake endpoints.

- To create an app, click the **New App** button on the dashboard and complete the form. Click, the **Proceed** button afterwards.

Expand All @@ -26,9 +26,9 @@ Now that you've obtained your API key, let's create your models!

- Adjust the slider based on the number of data that you want to generate, and complete the form. Then, click **Proceed**.

- The table should now display your mock data.
- The table should now display your fake data.

## Testing your mock server
## Testing your fake server

You can test your API endpoint using cURL with the following format:

Expand Down
2 changes: 1 addition & 1 deletion content/docs/http-methods.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# HTTP Methods

**PseudoRESTAPI** exposes your models via [PseudoGatewayAPI](https://gateway.pseudorestapi.com/). You can use any tool to send requests to your mock server. Just make sure to encode your credentials in **base64** string.
**PseudoRESTAPI** exposes your models via [PseudoGatewayAPI](https://gateway.pseudorestapi.com/). You can use any tool to send requests to your fake server. Just make sure to encode your credentials in **base64** string.

## GET

Expand Down
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export default defineNuxtConfig({
testUrl: process.env.NUXT_PUBLIC_TEST_URL,
},
},
telemetry: false,
veeValidate: {
// disable or enable auto imports
autoImports: true,
Expand Down
4 changes: 2 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<NavBarPublic />
<section class="flex flex-col h-screen gap-3">
<header class="flex flex-col m-auto text-center w-5/6 md:w-3/6">
<h1 class="font-bold text-3xl md:text-6xl"><span class="bg-gray-300">API Mocking</span> Made Simple for Everyone.</h1>
<p class="mt-8 md:text-xl">Build, tweak, and test your mock REST APIs with ease. We'll serve those endpoints for you.</p>
<h1 class="font-bold text-3xl md:text-6xl">Quickest Way to Test <span class="bg-gray-300">API Requests</span>.</h1>
<p class="mt-8 md:text-xl">Setup fake RESTful endpoints within minutes and begin sending API requests using your own tool.</p>
<div class="flex m-auto">
<NuxtLink
class="btn mt-4 gap-x-2 font-normal text-md md:text-2xl normal-case"
Expand Down
Binary file removed public/landing-page-v2.png
Binary file not shown.
Binary file added public/landing-page-v3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5e7f9ef

Please sign in to comment.