Quick Start
Get up and running with AuthScape in minutes.
Get AuthScape running in your development environment quickly.
Prerequisites
- .NET 8 SDK
- Node.js 18+
- SQL Server, PostgreSQL, or SQLite
Clone the Repository
bash
git clone https://github.com/authscape/authscape.gitcd authscape
Configure the Database
Edit appsettings.json to set your connection string:
json
{"ConnectionStrings": {"DefaultConnection": "Server=localhost;Database=AuthScape;Trusted_Connection=True;TrustServerCertificate=True"}}
Run Migrations
bash
dotnet ef database update
Start the Backend
bash
cd AuthScape.APIdotnet run
Start the Frontend
bash
cd AuthScape.NextJSnpm installnpm run dev
Access the Application
- Frontend: http://localhost:3000
- API: https://localhost:5001
- Swagger: https://localhost:5001/swagger
Next Steps
- Installation - Detailed installation guide
- Configuration - Configure your environment
- Authentication - Set up authentication