Conan website, including home and ConanCenter
server folder: FastAPI server. [WIP]
Run server:
cd test-server
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn app:app --reload --port 5000
conanio folder: NexJS web app source.
Run the development webserver with yarn:
cd conanio
yarn install
yarn test:ci
yarn dev
Open http://localhost:3000 with your browser to see the result.
API routes: the pages/api
directory is mapped to /api/*
. Files in this directory are treated as API routes instead of React pages.
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.