Can someone help me get Supertokens Core working? ...
# support-questions-legacy
j
Can someone help me get Supertokens Core working? It keeps returning
404 Not Found
with the body text
Not found
for every route. Command:
supertokens start --with-config=supertokens/config.yaml --foreground
Config:
Copy code
yaml
core_config_version: 0
host: 0.0.0.0
base_path: /api/auth
postgresql_config_version: 0
postgresql_user: postgres
postgresql_password: password
postgresql_database_name: test_db
postgresql_table_names_prefix: st
I'm trying multiple routes with the FDI loaded in Insomnia. Insomnia Env:
Copy code
json
{
  "base_url": "localhost:3567",
  "apiBasePath": "api/auth"
}
My database and config are definitely accessible because it created the
st_*
tables. The tables are empty, though, since I can't make requests. It's also definitely connecting to the server, since it returns a 404 instead of connection refused.