Skip to content

Commit f101676

Browse files
committed
Changed the develop markdown and fixed the blockquotes to codes.
1 parent 8d4d731 commit f101676

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,29 +30,36 @@ Starting the server is relatively easy. There are two ways of doing this:
3030

3131
To run the application through SBT, run the following command:
3232

33-
> sbt container:start shell
33+
sbt container:start shell
3434

3535
It might take some time to compile if you haven't done this yet and then you will see a shell. Then your service will become available and you will be able to query it through the browser.
3636

3737
To stop the server, run:
3838

39-
> container:stop
39+
container:stop
4040

4141
### Running the Server Through a Fat JAR
4242

4343
For this operation you will need to create the fat jar first and then simply start it as normal Java application.
4444

4545
To build the fat jar:
4646

47-
> sbt assembly
47+
sbt assembly
4848

4949
To run the application:
5050

51-
> java -jar jar-name.jar
51+
java -jar jar-name.jar
5252

5353
Then to stop the application, just press Ctrl+C.
5454

55+
Skeleton
56+
--------
57+
58+
We have a basic skeleton with almost no functionality that can be used to quickly start developing new APIs.
59+
60+
It is on the following branch: [feature/Scala_Api_Skeleton](https://github.com/nikolovivan/scala-api/tree/feature/Scala_Api_Skeleton). Just clone it and you are ready to go!
61+
5562
Conclusion
5663
----------
5764

58-
This is the skeleton application you can use to quickly start your development. From then on, it is up to you to add the dependencies you need and make the API do whatever you want.
65+
We hope you like the API and find it useful.

0 commit comments

Comments
 (0)