Skip to content

Latest commit

 

History

History

Sample.Profile

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

C# Profile Sample

You can create an app with prepulated schemas directly in Squidex.

How to run it?

Just press F5 in Visual Studio, thats it.

How to run it with a custom app?

Have a look to the configuration first: appsettings.json

You have to change the following settings:

  • appName: The name of your app.
  • clientId: The client id, usually: 'appName:sample-client'
  • clientSecret: The secret for your client. You can get it from the Squidex UI.

Optionally:

  • url: The url to your squidex instance, e.g. http://localhost:5000 if you run it locally.

How to run with docker?

docker run \
-d \
-p 80:80 \
-e app:appName='YOUR_APP' \
-e app:clientId='YOUR_APP:sample-client' \
-e app:clientSecret='SECRET' \
squidex/sample-profile:latest