This is a Next.js project.
- Next.js – React framework for building performant apps with the best developer experience
- Node.js - Node.js is a runtime environment for JavaScript built with V8, Chrome's JavaScript engine.
- Tailwind CSS – Utility-first CSS framework for rapid UI development
- Radix – Primitives like modal, popover, etc. to build a stellar user experience
- Shadcn UI – Beautifully designed components using tailwind and radix
- Lucide – Beautifully simple, pixel-perfect icons
- TypeScript – Static type checker for end-to-end typesafety
- Prettier – Opinionated code formatter for consistent code style
- ESLint – Pluggable linter for Next.js and TypeScript
In this project we have two folder, one is for run the backend server and the another one is for run the front end server
So, for run the front-end development server, open the folder cielo-front-end and execute the next command:
npm install
# or
yarn
# or
pnpm install
and
npm run dev
# or
yarn dev
# or
pnpm dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx
. The page auto-updates as you edit the file.
Now, for run the back-end, open the folder cielo-back-end and execute the next command:
node cielo-server.js
To be done