Skip to content

Commit 5e7f9ef

Browse files
committed
Grammar fix
1 parent ba066f2 commit 5e7f9ef

File tree

8 files changed

+15
-10
lines changed

8 files changed

+15
-10
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![PseudoRESTAPI - Landing Page](https://raw.githubusercontent.com/netervati/pseudo-rest-api/main/public/landing-page-v2.png)
1+
![PseudoRESTAPI - Landing Page](https://raw.githubusercontent.com/netervati/pseudo-rest-api/main/public/landing-page-v3.png)
22

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

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

16-
- Create API endpoints for your mock server
16+
- Create API endpoints for your fake server
1717
- Design the schema for your fake database
1818
- Generate data based on the schema
1919

components/footer.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
<script setup lang="ts">
2+
const curYear = new Date().getFullYear();
3+
</script>
4+
15
<template>
26
<footer class="footer border-b-8 border-violet-600 items-center p-6 md:text-lg">
37
<aside class="items-center grid-flow-col">
4-
<p2023 PseudoRESTAPI - All rights reserved.</p>
8+
<p{{ curYear }} PseudoRESTAPI - All rights reserved.</p>
59
</aside>
610
<nav class="grid-flow-col gap-4 md:place-self-center md:justify-self-end">
711
<p>Built by <NuxtLink class="text-violet-600 font-bold" to="https://www.christophertabula.net/">Christopher Tabula</NuxtLink></p>

content/docs/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Creating your first app
66

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

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

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

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

29-
- The table should now display your mock data.
29+
- The table should now display your fake data.
3030

31-
## Testing your mock server
31+
## Testing your fake server
3232

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

content/docs/http-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HTTP Methods
22

3-
**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.
3+
**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.
44

55
## GET
66

nuxt.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ export default defineNuxtConfig({
4040
testUrl: process.env.NUXT_PUBLIC_TEST_URL,
4141
},
4242
},
43+
telemetry: false,
4344
veeValidate: {
4445
// disable or enable auto imports
4546
autoImports: true,

pages/index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<NavBarPublic />
1111
<section class="flex flex-col h-screen gap-3">
1212
<header class="flex flex-col m-auto text-center w-5/6 md:w-3/6">
13-
<h1 class="font-bold text-3xl md:text-6xl"><span class="bg-gray-300">API Mocking</span> Made Simple for Everyone.</h1>
14-
<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>
13+
<h1 class="font-bold text-3xl md:text-6xl">Quickest Way to Test <span class="bg-gray-300">API Requests</span>.</h1>
14+
<p class="mt-8 md:text-xl">Setup fake RESTful endpoints within minutes and begin sending API requests using your own tool.</p>
1515
<div class="flex m-auto">
1616
<NuxtLink
1717
class="btn mt-4 gap-x-2 font-normal text-md md:text-2xl normal-case"

public/landing-page-v2.png

-64.9 KB
Binary file not shown.

public/landing-page-v3.png

77.4 KB
Loading

0 commit comments

Comments
 (0)