Advanced Search
Search Results
20 total results found
Holiday Calendar 2023
14 Jan Saturday Lohri Restricted Holiday 26 Jan Wednesday Republic Day Gazetted Holiday 8 Mar Wednesday Holi Gazetted Holiday 30 Mar Thursday Rama Navami Restricted Holiday 14 Apr Friday Vaisakhi Restricted Holiday ...
Deploying Admin to AWS manually
Pre-requisites Project cloned and installed using this guide - Installation Creating build cd <webapp directory> npm install npm run build Transferring the build to AWS Make sure asquared.pem file is in the project directory and remember not commit ...
Deployment to Google Play Store
Pre-requisites Project cloned and installed using this guide - Installation Android Studio and tools properly setup Creating build cd <mobile-app directory> npm run android:release:bundle After a folder will open containing the .aab file Depl...
Deployment to Apple Store
Pre-requisites Project cloned and installed using this guide - Inst Xcode installed Creating build and pushing to app store https://developer.apple.com/documentation/xcode/distributing-your-app-for-beta-testing-and-releases https://echobind.com/post/...
Installation
Overview This mobile application is built using React Native in conjunction. Pre-Requisites Git installed Node js 18 using nvm https://github.com/nvm-sh/nvm An IDE (preferably VS code) React native Pre-requisites with React native cli quickstart instal...
Installation
Overview This mobile application is built using React Native in conjunction with Expo, a powerful set of tools and services designed to simplify and accelerate the development of React Native projects. Refer the link below for the official documentation of e...
Installation
Pre-Requisite Git installed Node js and npm An IDE (preferably VS code) Cloning Repository The first step to clone the existing repository is to copy one of the links either with SSH or HTTPS. Initial setup The next step is to open the termi...
Deployment to Google Play Store
Pre-requisites Project cloned and installed using this guide - Installation Account on https://expo.dev/ Transporter app installed from App Store EAS CLI installed using npm install -g eas-cli Creating build cd <mobile-app directory> eas login # On...
Deployment to Apple Store
Pre-requisites Project cloned and installed using this guide - Installation Account on https://expo.dev/ Transporter app installed from App Store EAS CLI installed using npm install -g eas-cli Creating build cd <mobile-app directory> eas login # On...
Installation
Pre-Requisite Git installed Node js and npm An IDE (preferably VS code) Cloning Repository The first step to clone the existing repository is to copy one of the links either with SSH or HTTPS. Initial setup The next step is to open the termi...
Overview
Welcome to the documentation for server API! The API is built on Node.js and uses the Express.js framework, with a MySQL database for data storage. Methods It provides definitions for the CRUD operations on every endpoint by default. It also supports add...
Deploying Server API to AWS manually
Pre-requisites Project cloned and installed using this guide - Installation Creating build cd <server-api directory> npm install npm run build Transferring the build to AWS Make sure asquared.pem file is in the project directory and remember not com...
Sql queries
Query to fetch links of a particular user To fetch all categories and number of links in the category for a particular user : SELECT l.`categoryId` as `Category Id`,lc.title as `Category Name`,count(*) as `Number of links` FROM `save-app`.`links` l i...
Connecting to MySQL Workbench
Download To download mysql workbench visit https://dev.mysql.com/downloads/workbench/ and select the operating system and click on Download Connecting to the DB Open mySql workbench and click on Database and then select the Connect to Database option wh...
Database
Entity Relationship Diagram (ERD) The database does not contain any foreign key constraints. The checking of existence of a record is performed using services wherever necessary. Common attributes Every table has these common attributes which are au...
API Definitions
about-videos This api is used to store video tutorial's links authenticate This api is used to create authentication. It returns the authentication and refresh token. there are 4 different login types available and each type is handled as shown in t...
Working with Swagger
Introduction In server-api we have made use of Swagger which is a powerful tool which helps in documenting and testing the APIs of a server. It provides us with various features and tools which make testing very simple. To get started go to this link : api....
Working with server-api
Creating an endpoint To create an endpoint add a file with the endpoint name in src/api/definitions. Lets create a simple test endpoint. Creating this file automatically creates the endpoint in the server. Next step is to create the database schema...
Installation
Pre-Requisite Git installed Node js and npm An IDE (preferably VS code) Cloning Repository The first step to clone the existing repository is to copy one of the links either with SSH or HTTPS. Initial setup The next step is to open the termi...
Working with mobile app
Folder Structure All the image related resources are stored in the assets folder. All the code for the screens and components are inside the src folder Components The components folder contains components which are either used in multiple places or separate...