YassineLafryhi / Swiftsonver

A CLI tool to create a full mock REST API with zero coding

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Swiftsonver

A CLI tool to create a full mock REST API with zero coding

Installation

To install Swiftsonver, run the following commands:

For macOS :

cd ~/Downloads
wget https://github.com/YassineLafryhi/Swiftsonver/releases/download/0.9.0/Swiftsonver.zip
unzip Swiftsonver.zip
sudo mkdir -p /usr/local/bin
sudo mv swiftsonver /usr/local/bin/swiftsonver
sudo chmod +x /usr/local/bin/swiftsonver

Configuration

Start by running swiftsonver init file inside your project directory, then edit the swiftsonver.yml file :

apiVersion: "v1"
jsonDatabaseName: "database.json"
publicFolderName: "public"
uploadsFolderName: "uploads"
requiresAuthorization: true
jwtSecret: "MY_JWT_SECRET"
jwtExpirationTime: 300 # 5 minutes
adminUsername: "admin"
adminPassword: "password"
resources:
  - name: "posts"
  - name: "comments"

Usage

After editing the swiftsonver.yml file, run the following command to start the server:

swiftsonver serve

How to build

To build Swiftsonver from source, run the following commands:

git clone https://github.com/YassineLafryhi/Swiftsonver.git
cd Swiftsonver
chmod +x build.sh
./build.sh
# Then you can move swiftsonver to /usr/local/bin/swiftsonver

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Apache License 2.0

About

A CLI tool to create a full mock REST API with zero coding

License:Apache License 2.0


Languages

Language:Swift 97.2%Language:Shell 2.8%