Skip to content

Running Neutron

Bùi Nguyễn Tấn Sang edited this page May 12, 2024 · 6 revisions

Running Neutron

Once you've completed the initial setup as outlined in the Developer Guides, you can proceed to launch a local server using the following methods:

Launching the Server

Open your terminal or command prompt and navigate to the Neutron directory. Then, execute the following command:

python run.py

Or you can run in development mode to debug with the following command:

python run.py --dev

This command will start the Neutron server locally on your machine.

Important: Ensure that ADPN is correctly configured and compatible with Neutron before using this method.

Additional Notes

  • Make sure all prerequisites and dependencies mentioned in the Developer Guides are installed and configured before launching the server.
  • For troubleshooting or detailed instructions on specific setup configurations, refer to the Neutron documentation or community resources.

By following these steps, you should be able to successfully run the Neutron server locally for development or testing purposes.