Bliss - Dating app
  • Overview
  • Preview
    • Bliss App
    • Admin App
  • Features
    • Bliss App
    • Admin App
  • Instalation
    • Backend
    • Bliss App
    • Admin App
    • Build App
  • Packages
    • Backend
    • App
  • Structure
    • Backend
    • Bliss App
    • Admin App
  • Style of code writing
  • Customize
    • Languages
    • Theme
Powered by GitBook
On this page
  1. Instalation

Bliss App

1. Configuration

Open file from lib/config/NetConfig.dart, and set the apiUrl and refreshTokenUrl apis for member app, host and port must reference to your backend server.

class NetConfig {
  /**
   * base api url
   */
  static final String apiUrl = "http://192.168.1.8:5000";
 
  /**
   * refresh token url that use for get access token when access token expired
   */
  static final String refreshTokenUrl = "http://192.168.1.8:5000/api/en/member/token";
PreviousBackendNextAdmin App

Last updated 1 year ago