TUTORIAL - nself-org/cli GitHub Wiki
Build your first nself application: a simple blog with user authentication.
A blog with:
- Public blog posts
- User authentication (sign up, login)
- Users can write posts
- Comments on posts
Create tables for:
- Users
- Posts
- Comments
See Database Guide for detailed schema setup.
Configure user authentication:
- Email/password signup
- JWT tokens
- Session management
See Authentication Guide for complete setup.
- Add GraphQL queries
- Set up permissions
- Build frontend