I am new to ionic and I got a project source code from a friend. He sent only the src folder of the ionic project. I want to use this source code and run using ionic serve
How can I open the project and run it ? what commands should I use?
Assuming you have ionic installed, you can just create a new ionic project by firing ionic start my_awesome_app and it will create a new ionic project in the directory you are in your command line.
Now you will see that your project is created and has an src folder. Just replace this src folder with the one your friend gave. Then you can cd my_awesome_app to your project directory and run ionic serve and you are done.