Welcome to the github repository of Edusoft website
Edusoft is an education website that allows people who desires to study in any university around the world search and connect to their desired university and course with an adequate informations with respect to course, tuition accommodation and application processess and procedures.
https://edusoft-test.vercel.app/
To get started with the project in your local development environment, follow these steps:
- Clone the repository to your local machine.
https://github.com/Nwaigba66/edusoft-frontEnd.git
- Open the cloned folder in your preferred code editor, install the required dependencies by running the following command in the terminal:
pip install node.js
Followed by
npm install
- System Requirements:
Node.js 16.14 or later. macOS, Windows (including WSL), and Linux are supported.
- Start the development server by running the following command:
We recommend starting a new Next.js app using create-next-app, which sets up everything automatically for you. To create a project, run:
npx create-next-app@latest
On installation, you'll see the following prompts:
What is your project named? my-app
Would you like to use TypeScript? No / Yes
Would you like to use ESLint? No / Yes
Would you like to use Tailwind CSS? No / Yes
Would you like to use src/
directory? No / Yes
Would you like to use App Router? (recommended) No / Yes
Would you like to customize the default import alias (@/)? No / Yes
What import alias would you like configured? @/
After the prompts, create-next-app will create a folder with your project name and install the required dependencies.
To manually create a new Next.js app, install the required packages:
Terminal
npm install next@latest react@latest react-dom@latest Open your package.json file and add the following scripts:
package.json
{ "scripts": { "dev": "next dev", "build": "next build", "start": "next start", "lint": "next lint" } } These scripts refer to the different stages of developing an application:
dev: runs next dev to start Next.js in development mode. build: runs next build to build the application for production usage. start: runs next start to start a Next.js production server. lint: runs next lint to set up Next.js' built-in ESLint configuration.
- The application can used on any andriod device because it responsive to any screen size
- It supports any desktop device also
Gloria Nwaigba Idris Adebowale
MIT License
Copyright (c) 2023 Nwaigba66
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Next.js now ships with TypeScript, ESLint, and Tailwind CSS configuration by default. You can optionally use a src directory in the root of your project to separate your application's code from configuration files.
You are now ready to go!