Is there any guide on how to run SST + SLS on the ...
# guide
a
Is there any guide on how to run SST + SLS on the same repo, in a way that I can start creating new-services with SST while continue having SLS for old ones? any recommendations?
f
Hey @Adrián Mouly, if you repo is currently structured like:
Copy code
/
  package.json
  services/
    serviceA/
      serverless.yml
    serviceB/
      serverless.yml
You can follow the link @Ross Coundon sent above to create an SST app off the repo root, so the structure will look like:
Copy code
/
  package.json
  sst.json
  lib/
  src/
  services/
    serviceA/
      serverless.yml
    serviceB/
      serverless.yml
Let me know if you have any questions along the way!
a
Thank you, going to try it.