Exitum site isn't finished yet! It will be soon ;)
How to a make server with Exitum?Hello everyone! In this project, I will show you how to make an easy server with ExitumAPI and ExitumServerConnect.
REQUIREMENTS:
- Computer (with internet connection)
- Exitum's developer account
First, you will need an internet connect configuration file :
Exitum API is connecting to internet
Now, let's make simple .exi script, (that's Exitum's programming language).
# This is connect script
# Made by Dejan Lukić (Exitum's CEO)
file 'exi'
.variable == 'connectionURL'('http://develeoper.exitum.ga') # Don't change
.variable == 'connectionType'(socket.Http) # Don't change
.variable == 'user'('yourUsername') # Your Exitum account username
.variable == 'pass'(passkey.'yourpassword123A') # Your Exitum account password
.variable == 'string'(default)
code [
if connectionURL == 'http://developer.exitum.ga':
connection.Establish(connectionType)
else:
connection.Abort + alert.Prompt(#000000, 'You are changed the connection URL! Please edit config.exi file!')
end else;
end if;
]
Upload this to dashboard under "Connections".
File transfer example
Now, you can go to the dashboard and edit your server. After about an hour, your server will be active. Default IP is yourUsername.exitum.ga (yourUsername is your Exitum account username).
Comments
Please log in or sign up to comment.